Skip to content

Commit

Permalink
Increase batch size
Browse files Browse the repository at this point in the history
  • Loading branch information
vplauzon committed Oct 24, 2023
1 parent 2d30e0e commit ecca9b4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand All @@ -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
Expand Down

0 comments on commit ecca9b4

Please sign in to comment.