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.
1 parent e4db2dd commit 084dda4Copy full SHA for 084dda4
pkg/cmd/roachtest/tests/split.go
@@ -208,9 +208,10 @@ func registerLoadSplits(r registry.Registry) {
208
maxSize: 10 << 30, // 10 GB
209
cpuThreshold: 100 * time.Millisecond, // 1/10th of a CPU per second.
210
// There should be at least 13 splits, in practice there are on average
211
- // 20.
+ // 20 we never see 60 splits here, but we've seen as high as 36 and don't
212
+ // want to see flakes.
213
minimumRanges: 14,
- maximumRanges: 25,
214
+ maximumRanges: 60,
215
load: kvSplitLoad{
216
concurrency: 64, // 64 concurrent workers
217
readPercent: 95, // 95% reads
0 commit comments