We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 478b50d + fcc24f1 commit 1c679b2Copy full SHA for 1c679b2
pkg/cmd/roachtest/tests/split.go
@@ -205,9 +205,10 @@ func registerLoadSplits(r registry.Registry) {
205
maxSize: 10 << 30, // 10 GB
206
cpuThreshold: 100 * time.Millisecond, // 1/10th of a CPU per second.
207
// There should be at least 13 splits, in practice there are on average
208
- // 20.
+ // 20 we never see 60 splits here, but we've seen as high as 36 and don't
209
+ // want to see flakes.
210
minimumRanges: 14,
- maximumRanges: 25,
211
+ maximumRanges: 60,
212
load: kvSplitLoad{
213
concurrency: 64, // 64 concurrent workers
214
readPercent: 95, // 95% reads
0 commit comments