mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
Merge pull request #16378 from serathius/qps-flakes
tests/robustness: Reduce minimal QPS to eliminate flakes
This commit is contained in:
commit
25315dd1f2
@ -78,7 +78,7 @@ func TestRobustness(t *testing.T) {
|
||||
clusterOfSize1Options := baseOptions
|
||||
clusterOfSize1Options = append(clusterOfSize1Options, e2e.WithClusterSize(1))
|
||||
// Add LazyFS only for traffic with lower QPS as it uses a lot of CPU lowering minimal QPS.
|
||||
if enableLazyFS && tp.Profile.MinimalQPS <= 100 {
|
||||
if enableLazyFS && tp.Profile.MinimalQPS <= 80 {
|
||||
clusterOfSize1Options = append(clusterOfSize1Options, e2e.WithLazyFSEnabled(true))
|
||||
name = filepath.Join(name, "LazyFS")
|
||||
}
|
||||
|
@ -37,7 +37,7 @@ var (
|
||||
|
||||
LowTraffic = Profile{
|
||||
Name: "LowTraffic",
|
||||
MinimalQPS: 100,
|
||||
MinimalQPS: 80,
|
||||
MaximalQPS: 200,
|
||||
ClientCount: 8,
|
||||
MaxNonUniqueRequestConcurrency: 3,
|
||||
|
Loading…
x
Reference in New Issue
Block a user