Skip to content

Commit

Permalink
increase no output time for gsi 100k records e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
sundersc committed Apr 1, 2024
1 parent affdb98 commit 569fe0b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {
COUNT_100_THOUSAND,
DURATION_30_MINUTES,
DURATION_45_MINUTES,
MUTATION_THREE_FIELD_CREATE,
SCHEMA_THREE_FIELDS_ALL_INDEXED,
SCHEMA_THREE_FIELDS_NO_INDEX,
Expand All @@ -9,7 +9,7 @@ import { recordCountDataProvider, recordCountDataValidator, testManagedTableDepl

testManagedTableDeployment({
name: '3 GSIs updated - 100k Records',
maxDeployDurationMs: DURATION_30_MINUTES,
maxDeployDurationMs: DURATION_45_MINUTES,
initialSchema: SCHEMA_THREE_FIELDS_NO_INDEX,
updatedSchema: SCHEMA_THREE_FIELDS_ALL_INDEXED,
dataSetup: recordCountDataProvider(COUNT_100_THOUSAND, MUTATION_THREE_FIELD_CREATE),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ const ONE_MINUTE = 60 * 1000;
export const DURATION_10_MINUTES = 10 * ONE_MINUTE;
export const DURATION_20_MINUTES = 20 * ONE_MINUTE;
export const DURATION_30_MINUTES = 30 * ONE_MINUTE;
export const DURATION_45_MINUTES = 45 * ONE_MINUTE;
export const DURATION_1_HOUR = 60 * ONE_MINUTE;

export const COUNT_1_THOUSAND = 1000;
Expand Down

0 comments on commit 569fe0b

Please sign in to comment.