Skip to content

Commit

Permalink
Rehabilitate the fetch benchmark (#2860)
Browse files Browse the repository at this point in the history
  • Loading branch information
steveluscher authored Jun 26, 2024
1 parent 22a34aa commit 7e10731
Show file tree
Hide file tree
Showing 5 changed files with 65 additions and 20 deletions.
20 changes: 20 additions & 0 deletions packages/fetch-impl/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Copyright (c) 2023 Solana Labs, Inc

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
12 changes: 12 additions & 0 deletions packages/fetch-impl/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "@solana/fetch-impl",
"version": "0.0.0",
"private": true,
"scripts": {
"benchmark": "./src/__benchmarks__/run.ts"
},
"devDependencies": {
"tinybench": "^2.6.0",
"undici": "^6.19.2"
}
}
34 changes: 14 additions & 20 deletions packages/fetch-impl/src/__benchmarks__/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ import { ok } from 'node:assert';
import process from 'node:process';

import { Bench } from 'tinybench';
import { Agent, Dispatcher } from 'undici';

import fetchImpl from '../index.node';
import { Agent, Dispatcher, fetch } from 'undici';

const NUM_CONCURRENT_REQUESTS = 1024;
const URL = process.argv[2];
Expand Down Expand Up @@ -44,7 +42,7 @@ function getTestInit() {
async function makeConcurrentRequests(num: number = NUM_CONCURRENT_REQUESTS) {
await Promise.all(
Array.from({ length: num }).map(() =>
fetchImpl(URL, {
fetch(URL, {
dispatcher,
...getTestInit(),
}),
Expand All @@ -58,40 +56,36 @@ bench
dispatcher = undefined;
},
})
// FIXME: https://github.com/nodejs/undici/issues/2808
// .add('unlimited connections http/2', () => makeConcurrentRequests(), {
// beforeEach: createDispatcher.bind(null, { allowH2: true, connections: null }),
// })
.add('unlimited connections http/2', () => makeConcurrentRequests(), {
beforeEach: createDispatcher.bind(null, { allowH2: true, connections: null }),
})
.add('unlimited connections', () => makeConcurrentRequests(), {
beforeEach: createDispatcher.bind(null, { connections: null }),
})
.add('16 connections', () => makeConcurrentRequests(), {
beforeEach: createDispatcher.bind(null, { connections: 16 }),
})
// FIXME: https://github.com/nodejs/undici/issues/2808
// .add('16 connections, http/2', () => makeConcurrentRequests(), {
// beforeEach: createDispatcher.bind(null, { allowH2: true, connections: 16 }),
// })
.add('16 connections, http/2', () => makeConcurrentRequests(), {
beforeEach: createDispatcher.bind(null, { allowH2: true, connections: 16 }),
})
.add('16 connections, pipeline 2 wide', () => makeConcurrentRequests(), {
beforeEach: createDispatcher.bind(null, { connections: 16, pipelining: 2 }),
})
.add('32 connections', () => makeConcurrentRequests(), {
beforeEach: createDispatcher.bind(null, { connections: 32 }),
})
// FIXME: https://github.com/nodejs/undici/issues/2808
// .add('32 connections, http/2', () => makeConcurrentRequests(), {
// beforeEach: createDispatcher.bind(null, { allowH2: true, connections: 32 }),
// })
.add('32 connections, http/2', () => makeConcurrentRequests(), {
beforeEach: createDispatcher.bind(null, { allowH2: true, connections: 32 }),
})
.add('32 connections, pipeline 2 wide', () => makeConcurrentRequests(), {
beforeEach: createDispatcher.bind(null, { connections: 32, pipelining: 2 }),
})
.add('64 connections', () => makeConcurrentRequests(), {
beforeEach: createDispatcher.bind(null, { connections: 64 }),
})
// FIXME: https://github.com/nodejs/undici/issues/2808
// .add('64 connections, http/2', () => makeConcurrentRequests(), {
// beforeEach: createDispatcher.bind(null, { allowH2: true, connections: 64 }),
// })
.add('64 connections, http/2', () => makeConcurrentRequests(), {
beforeEach: createDispatcher.bind(null, { allowH2: true, connections: 64 }),
})
.add('64 connections, pipeline 2 wide', () => makeConcurrentRequests(), {
beforeEach: createDispatcher.bind(null, { connections: 64, pipelining: 2 }),
});
Expand Down
10 changes: 10 additions & 0 deletions packages/fetch-impl/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"esModuleInterop": true,
"lib": ["DOM", "ES5"]
},
"display": "Fetch Implementation",
"extends": "@solana/tsconfig/base.json",
"include": ["src"]
}
9 changes: 9 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 7e10731

Please sign in to comment.