Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
137836: roachtest: disable the impact check for elastic workload r=nvanbenschoten a=andrewbaptist

Recently the elastic workload test has been less stable and even with the change to the default kvadmission.flow_control.mode change to `apply_to_all` it can still overload the disk and cause large impacts.

Fixes: cockroachdb#136991
Informs: cockroachdb#137835

Release note: None

Co-authored-by: Andrew Baptist <[email protected]>
  • Loading branch information
craig[bot] and andrewbaptist committed Dec 20, 2024
2 parents 5afe918 + 12db250 commit 12812af
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkg/cmd/roachtest/tests/perturbation/elastic_workload.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ package perturbation
import (
"context"
"fmt"
"math"
"math/rand"
"time"

Expand All @@ -28,7 +29,9 @@ type elasticWorkload struct{}
var _ perturbation = elasticWorkload{}

func (e elasticWorkload) setup() variations {
return setup(e, 20.0)
// TODO(#137835): Determine why the impact is so high and reduce this once
// it is addressed.
return setup(e, math.Inf(1))
}

func (e elasticWorkload) setupMetamorphic(rng *rand.Rand) variations {
Expand Down

0 comments on commit 12812af

Please sign in to comment.