From 8fa1ec9beb91b7a10744360fd53ab7d242bff9ae Mon Sep 17 00:00:00 2001 From: Alex Potsides Date: Tue, 7 Nov 2023 10:22:00 +0000 Subject: [PATCH] docs: include required chunk size in perf readme I almost changed the default to something bigger because it improves the benchmark results.. It's probably worth stating explicitly what the chunk size is so every implementation uses the same value for consistency. --- perf/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/perf/README.md b/perf/README.md index 64b57c5de..973084fed 100644 --- a/perf/README.md +++ b/perf/README.md @@ -75,8 +75,8 @@ Given you have provisioned your infrastructure, you can now build and run the li - Input via command line - `--server-address` - `--transport` (see [`runner/versions.ts`](./runner/src/versions.ts#L7-L43) for possible variants) - - `--upload-bytes` number of bytes to upload per stream. - - `--download-bytes` number of bytes to download per stream. + - `--upload-bytes` number of bytes to upload per stream in 64KiB chunks. + - `--download-bytes` number of bytes to download per stream in 64KiB chunks. - Output - Logging MUST go to `stderr`. - Measurement output is printed to `stdout` as JSON.