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