Skip to content

Commit

Permalink
fix(repair_test): reduce the amount of tablets to gain speed
Browse files Browse the repository at this point in the history
Fixes #3929
  • Loading branch information
Michal-Leszczynski committed Jul 16, 2024
1 parent 5f7e49b commit 06608bb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/service/repair/service_repair_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -902,9 +902,9 @@ func TestServiceRepairResumeAllRangesIntegration(t *testing.T) {
)

// Create keyspaces. Low RF increases repair parallelism.
tryCreateTabletKeyspace(t, clusterSession, ks1, 2, 1, 4096)
tryCreateTabletKeyspace(t, clusterSession, ks2, 1, 1, 4096)
tryCreateTabletKeyspace(t, clusterSession, ks3, 1, 1, 4096)
tryCreateTabletKeyspace(t, clusterSession, ks1, 2, 1, 256)
tryCreateTabletKeyspace(t, clusterSession, ks2, 1, 1, 256)
tryCreateTabletKeyspace(t, clusterSession, ks3, 1, 1, 256)

// Create and fill tables
WriteData(t, clusterSession, ks1, 1, t1)
Expand Down

0 comments on commit 06608bb

Please sign in to comment.