Skip to content

Commit 05a73c0

Browse files
committed
benchmark: make concurrent requests configurable
In http_bench.js, allow the concurrent requests per client to be configurable. This also changes the launch of clients to wait until all forked servers are online. This eliminates spurious error messages at the start of the run. PR-URL: #2068 Reviewed-By: Ben Noordhuis <[email protected]>
1 parent f52d733 commit 05a73c0

File tree

1 file changed

+23
-10
lines changed

1 file changed

+23
-10
lines changed

benchmark/http_bench.js

+23-10
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ var options = {
88
port: 22344,
99
path: '/',
1010
servers: 1,
11-
clients: 1
11+
clients: 1,
12+
clientConcurrentRequests: 2
1213
};
1314

1415
for (var i = 2; i < process.argv.length; ++i) {
@@ -44,13 +45,25 @@ function patch(fun) {
4445
function startMaster() {
4546
if (!cluster.isMaster) return startServer();
4647

47-
for (var i = ~~options.servers; i > 0; --i) cluster.fork();
48+
var forkCount = 0;
49+
50+
cluster.on('online', function () {
51+
forkCount = forkCount + 1;
52+
if (forkCount === ~~options.servers) {
53+
var args = [
54+
__filename,
55+
'mode=client',
56+
'clientConcurrentRequests=' + options.clientConcurrentRequests
57+
];
58+
for (var i = ~~options.clients; i > 0; --i) {
59+
var cp = spawn(process.execPath, args);
60+
cp.stdout.pipe(process.stdout);
61+
cp.stderr.pipe(process.stderr);
62+
}
63+
}
64+
});
4865

49-
for (var i = ~~options.clients; i > 0; --i) {
50-
var cp = spawn(process.execPath, [__filename, 'mode=client']);
51-
cp.stdout.pipe(process.stdout);
52-
cp.stderr.pipe(process.stderr);
53-
}
66+
for (var i = ~~options.servers; i > 0; --i) cluster.fork();
5467
}
5568

5669
function startServer() {
@@ -73,9 +86,9 @@ function startServer() {
7386

7487
function startClient() {
7588
// send off a bunch of concurrent requests
76-
// TODO make configurable
77-
sendRequest();
78-
sendRequest();
89+
for (var i = ~~options.clientConcurrentRequests; i > 0; --i) {
90+
sendRequest();
91+
}
7992

8093
function sendRequest() {
8194
var req = http.request(options, onConnection);

0 commit comments

Comments
 (0)