From ecca9b4869c8b70ca61f1e9e2983399efcf52853 Mon Sep 17 00:00:00 2001 From: vplauzon Date: Tue, 24 Oct 2023 14:13:28 -0400 Subject: [PATCH] Increase batch size --- .../integration-test/integration-test-infra-deploy.bicep | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deployment/integration-test/integration-test-infra-deploy.bicep b/deployment/integration-test/integration-test-infra-deploy.bicep index 39a5f4b..834188a 100644 --- a/deployment/integration-test/integration-test-infra-deploy.bicep +++ b/deployment/integration-test/integration-test-infra-deploy.bicep @@ -2,7 +2,7 @@ // Deploy ADX clusters with multiple databases // ready to accomodate integration tests -var intTestDbCountPerPrefix = 100 +var intTestDbCountPerPrefix = 150 var uniqueId = uniqueString(resourceGroup().id, 'delta-kusto') var prefixes = [ @@ -28,7 +28,7 @@ resource intTestCluster 'Microsoft.Kusto/clusters@2022-12-29' = { } } -@batchSize(5) +@batchSize(10) resource intTestDbs 'Microsoft.Kusto/clusters/databases@2022-12-29' = [for i in range(0, length(prefixes) * intTestDbCountPerPrefix): { name: '${prefixes[i / intTestDbCountPerPrefix]}${format('{0:D8}', i % intTestDbCountPerPrefix + 1)}' location: resourceGroup().location