Skip to content

Commit

Permalink
Merge #33563
Browse files Browse the repository at this point in the history
33563: roachtest: run fewer splits in kv/splits r=petermattis a=tbg

Closes #30832.

Release note: None

Co-authored-by: Tobias Schottdorf <tobias.schottdorf@gmail.com>
  • Loading branch information
craig[bot] and tbg committed Jan 8, 2019
2 parents 12e2815 + 83b962f commit 468b486
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion pkg/cmd/roachtest/kv.go
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,14 @@ func registerKVSplits(r *registry) {
splits int
timeout time.Duration
}{
{true, 500000, 2 * time.Hour},
// NB: with 500000 splits, this test sometimes fails since it's pushing
// far past the number of replicas per node we support, at least if the
// ranges start to unquiesce (which can set off a cascade due to resource
// exhaustion).
{true, 300000, 2 * time.Hour},
// This version of the test prevents range quiescence to trigger the
// badness described above more reliably for when we wish to improve
// the performance.
{false, 100000, 2 * time.Hour},
} {
item := item // for use in closure below
Expand Down

0 comments on commit 468b486

Please sign in to comment.