mirror of
https://github.com/zebrajr/node.git
synced 2025-12-07 00:20:38 +01:00
According to https://github.com/nodejs/performance/issues/186 this benchmark was taking 160 secs for a single run. Based on a research in a dedicated machine, the results doesn't have variation based on the configs, so we don't need to bench all variations. Signed-off-by: RafaelGSS <rafael.nunu@hotmail.com> PR-URL: https://github.com/nodejs/node/pull/59587 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
68 lines
1.8 KiB
JavaScript
68 lines
1.8 KiB
JavaScript
// Test UDP send throughput with the multi buffer API against Buffer.concat
|
|
'use strict';
|
|
|
|
const common = require('../common.js');
|
|
const dgram = require('dgram');
|
|
const PORT = common.PORT;
|
|
|
|
// `n` is the number of send requests to queue up each time.
|
|
// Keep it reasonably high (>10) otherwise you're benchmarking the speed of
|
|
// event loop cycles more than anything else.
|
|
const bench = common.createBenchmark(main, {
|
|
len: [64, 512, 1024],
|
|
n: [100],
|
|
chunks: [1, 4],
|
|
type: ['concat', 'multi'],
|
|
dur: [5],
|
|
});
|
|
|
|
function main({ dur, len, n, type, chunks }) {
|
|
const chunk = [];
|
|
for (let i = 0; i < chunks; i++) {
|
|
chunk.push(Buffer.allocUnsafe(Math.round(len / chunks)));
|
|
}
|
|
|
|
// Server
|
|
let sent = 0;
|
|
const socket = dgram.createSocket('udp4');
|
|
const onsend = type === 'concat' ? onsendConcat : onsendMulti;
|
|
|
|
function onsendConcat() {
|
|
if (sent++ % n === 0) {
|
|
// The setImmediate() is necessary to have event loop progress on OSes
|
|
// that only perform synchronous I/O on nonblocking UDP sockets.
|
|
setImmediate(() => {
|
|
for (let i = 0; i < n; i++) {
|
|
socket.send(Buffer.concat(chunk), PORT, '127.0.0.1', onsend);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
function onsendMulti() {
|
|
if (sent++ % n === 0) {
|
|
// The setImmediate() is necessary to have event loop progress on OSes
|
|
// that only perform synchronous I/O on nonblocking UDP sockets.
|
|
setImmediate(() => {
|
|
for (let i = 0; i < n; i++) {
|
|
socket.send(chunk, PORT, '127.0.0.1', onsend);
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
socket.on('listening', () => {
|
|
bench.start();
|
|
onsend();
|
|
|
|
setTimeout(() => {
|
|
const bytes = sent * len;
|
|
const gbits = (bytes * 8) / (1024 * 1024 * 1024);
|
|
bench.end(gbits);
|
|
process.exit(0);
|
|
}, dur * 1000);
|
|
});
|
|
|
|
socket.bind(PORT);
|
|
}
|