From f6a1585902e8cc0986d6fde7ba4871dc5e9fd878 Mon Sep 17 00:00:00 2001 From: Xiang Li Date: Sun, 7 Aug 2016 14:34:01 -0700 Subject: [PATCH] functional-tester: reduce rate to 3000 --- tools/functional-tester/etcd-tester/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/functional-tester/etcd-tester/main.go b/tools/functional-tester/etcd-tester/main.go index ec2ae97f0..f99b9c2ed 100644 --- a/tools/functional-tester/etcd-tester/main.go +++ b/tools/functional-tester/etcd-tester/main.go @@ -33,7 +33,7 @@ func main() { stressKeySuffixRange := flag.Uint("stress-key-count", 250000, "the count of key range written into etcd.") stressKeyRangeLimit := flag.Uint("stress-range-limit", 50, "maximum number of keys to range or delete.") limit := flag.Int("limit", -1, "the limit of rounds to run failure set (-1 to run without limits).") - stressQPS := flag.Int("stress-qps", 10000, "maximum number of stresser requests per second.") + stressQPS := flag.Int("stress-qps", 3000, "maximum number of stresser requests per second.") schedCases := flag.String("schedule-cases", "", "test case schedule") consistencyCheck := flag.Bool("consistency-check", true, "true to check consistency (revision, hash)") isV2Only := flag.Bool("v2-only", false, "'true' to run V2 only tester.")