From 2466a58e1a1f2c296a958c87b481bd244573b0a9 Mon Sep 17 00:00:00 2001 From: Asier Isayas Date: Thu, 15 Jan 2026 08:25:00 -0800 Subject: [PATCH] for test sql containers, use throughput of 4000 --- test/testData.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/testData.ts b/test/testData.ts index 7e5a1f26c..c53db7cee 100644 --- a/test/testData.ts +++ b/test/testData.ts @@ -186,6 +186,8 @@ export async function createTestSQLContainer({ const { container } = await database.containers.createIfNotExists({ id: containerId, partitionKey, + }, { + offerThroughput: 4000, }); if (includeTestData) { const batchCount = TestData.length / 100;