tests/robustness: Reduce minimal QPS to eliminate flakes

Signed-off-by: Marek Siarkowicz <siarkowicz@google.com>
This commit is contained in:
Marek Siarkowicz 2023-08-05 19:27:00 +02:00
parent def3494a55
commit a2bd589cdb
2 changed files with 2 additions and 2 deletions

View File

@ -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")
}

View File

@ -37,7 +37,7 @@ var (
LowTraffic = Profile{
Name: "LowTraffic",
MinimalQPS: 100,
MinimalQPS: 80,
MaximalQPS: 200,
ClientCount: 8,
MaxNonUniqueRequestConcurrency: 3,