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