Skip to content

Commit 8f19f41

Browse files
craig[bot]stevendanna
andcommitted
Merge #156931
156931: roachtest: lower max-rate in kv-rangefeed tests r=pav-kv a=stevendanna During local testing this configuration looked stable, but 20k wps pushes the cluster CPU to 85+% and the cluster is not able to keep up even when a rangefeed isn't running. The changefeed then drives us right over the cliff in terms of CPU. Here, we lower the write rate to keep the test more stable. Fixes #156916 Fixes #156927 Release note: None Co-authored-by: Steven Danna <danna@cockroachlabs.com>
2 parents 3c7eac5 + 2092d39 commit 8f19f41

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/cmd/roachtest/tests/kv_rangefeed.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ func registerKVRangefeed(r registry.Registry) {
410410
testConfigs := []kvRangefeedTest{
411411
// Adequately provisioned sink
412412
{
413-
writeMaxRate: 20000,
413+
writeMaxRate: 10000,
414414
duration: 30 * time.Minute,
415415
sinkProvisioning: 1.2,
416416
splits: splits,
@@ -420,7 +420,7 @@ func registerKVRangefeed(r registry.Registry) {
420420
},
421421
// Underprovisioned sink
422422
{
423-
writeMaxRate: 20000,
423+
writeMaxRate: 10000,
424424
duration: 30 * time.Minute,
425425
sinkProvisioning: 0.8,
426426
splits: splits,

0 commit comments

Comments
 (0)