Skip to content

Commit

Permalink
fix(manager_persistent_snapshots): increase expected timeouts
Browse files Browse the repository at this point in the history
since manager 3.2 we have a "longer" restore operation,
since a repair is called as part of its operation (and
not manually by the user aftwards), making the `restore`
operation much longer it was before.

it should give time to the restore, and from staging
test on the smallest snapshot size, it took ~23 minutes
(instead of the 15 initially planned), and hence here
giving some extra, to accomodate different running
workloads.
  • Loading branch information
Fabio Gelcer authored and fruch committed Nov 8, 2023
1 parent 5f46ec0 commit 370c065
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions defaults/manager_persistent_snapshots.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ aws:
snapshots_sizes:
5:
number_of_rows: 5242880
expected_timeout: 900 # 15 minutes
expected_timeout: 1800 # 30 minutes
snapshots:
'sm_20230702185929UTC':
keyspace_name: "5gb_sizetiered_2022_2"
Expand All @@ -23,7 +23,7 @@ aws:
number_of_nodes: 5
10:
number_of_rows: 10485760
expected_timeout: 1800 # 30 minutes
expected_timeout: 3600 # 60 minutes
snapshots:
'sm_20230223105105UTC':
keyspace_name: "10gb_sizetiered"
Expand All @@ -47,7 +47,7 @@ aws:
number_of_nodes: 4
100:
number_of_rows: 104857600
expected_timeout: 9000 # 150 minutes
expected_timeout: 18000 # 300 minutes
snapshots:
'sm_20230223130733UTC':
keyspace_name: "100gb_sizetiered"
Expand All @@ -71,7 +71,7 @@ aws:
number_of_nodes: 4
2048:
number_of_rows: 2147483648
expected_timeout: 66000 # 1100 minutes
expected_timeout: 132000 # 2200 minutes
snapshots:
'sm_20230226074656UTC':
keyspace_name: "2tb_sizetiered"
Expand Down

0 comments on commit 370c065

Please sign in to comment.