summaryrefslogtreecommitdiff
path: root/benchmark/http2
diff options
context:
space:
mode:
authorAnna Henningsen <anna@addaleax.net>2018-03-07 18:45:21 +0100
committerAnna Henningsen <anna@addaleax.net>2018-03-15 12:53:22 +0100
commite136903700445f1d5f7555f22f69be189a14f682 (patch)
tree7139e2d50a0930c44dfd470183d52d2091089e9d /benchmark/http2
parentd93c48bf61d6b74bc080da8568df6f2eac44f275 (diff)
downloadandroid-node-v8-e136903700445f1d5f7555f22f69be189a14f682.tar.gz
android-node-v8-e136903700445f1d5f7555f22f69be189a14f682.tar.bz2
android-node-v8-e136903700445f1d5f7555f22f69be189a14f682.zip
benchmark: remove excessive value from http2 benchmark
`requests = 1000000` took about 10 minutes per run for me and doesn’t seem to add much value on its own. PR-URL: https://github.com/nodejs/node/pull/18936 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Diffstat (limited to 'benchmark/http2')
-rw-r--r--benchmark/http2/respond-with-fd.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmark/http2/respond-with-fd.js b/benchmark/http2/respond-with-fd.js
index fa7b2fbd16..cc9992e8ca 100644
--- a/benchmark/http2/respond-with-fd.js
+++ b/benchmark/http2/respond-with-fd.js
@@ -7,7 +7,7 @@ const fs = require('fs');
const file = path.join(path.resolve(__dirname, '../fixtures'), 'alice.html');
const bench = common.createBenchmark(main, {
- requests: [100, 1000, 10000, 100000, 1000000],
+ requests: [100, 1000, 10000, 100000],
streams: [100, 200, 1000],
clients: [1, 2],
benchmarker: ['h2load']