diff --git a/.github/workflows/robustness.yaml b/.github/workflows/robustness.yaml index 80e55a9a3c3b..24db4513dd1f 100644 --- a/.github/workflows/robustness.yaml +++ b/.github/workflows/robustness.yaml @@ -10,3 +10,4 @@ jobs: count: 12 testTimeout: 30m artifactName: main + runs-on: "['ubuntu-latest-8-cores']" diff --git a/tests/robustness/linearizability_test.go b/tests/robustness/linearizability_test.go index a6bf66a2616a..30bf8d8abb78 100644 --- a/tests/robustness/linearizability_test.go +++ b/tests/robustness/linearizability_test.go @@ -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 <= 80 { + if enableLazyFS && tp.Profile.MinimalQPS <= 100 { clusterOfSize1Options = append(clusterOfSize1Options, e2e.WithLazyFSEnabled(true)) name = filepath.Join(name, "LazyFS") } diff --git a/tests/robustness/traffic/traffic.go b/tests/robustness/traffic/traffic.go index 7aa51734f5a7..5e4a4b89d1a0 100644 --- a/tests/robustness/traffic/traffic.go +++ b/tests/robustness/traffic/traffic.go @@ -37,7 +37,7 @@ var ( LowTraffic = Profile{ Name: "LowTraffic", - MinimalQPS: 80, + MinimalQPS: 100, MaximalQPS: 200, ClientCount: 8, MaxNonUniqueRequestConcurrency: 3,