Skip to content

Commit

Permalink
Fixed minimum batching span
Browse files Browse the repository at this point in the history
  • Loading branch information
AsafMah committed Aug 31, 2024
1 parent 6095ce7 commit 12f02a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion azkustoingest/test/etoe/ingestion_status_e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func TestIngestionStatus(t *testing.T) {

// Change the ingestion batching time
batchingStmt := kql.New(".alter table ").AddTable(tableName).AddLiteral(
" policy ingestionbatching @'{ \"MaximumBatchingTimeSpan\": \"00:00:05\", \"MaximumNumberOfItems\": 500, \"MaximumRawDataSizeMB\": 1024 }' ")
" policy ingestionbatching @'{ \"MaximumBatchingTimeSpan\": \"00:00:10\", \"MaximumNumberOfItems\": 500, \"MaximumRawDataSizeMB\": 1024 }' ")
_, err = client.Mgmt(ctx, testConfig.Database, batchingStmt)
require.NoError(t, err, "failed to reduce the default batching time")

Expand Down

0 comments on commit 12f02a2

Please sign in to comment.