increase chunk size; change composition.

This commit is contained in:
Raúl Kripalani 2020-09-11 23:42:09 +01:00
parent 77000db747
commit 172204c933
2 changed files with 3 additions and 3 deletions

View File

@ -9,10 +9,10 @@
runner = "local:docker"
[global.run.test_params]
size = "100MB"
size = "10MB"
latencies = '["50ms", "100ms", "200ms"]'
bandwidth = '["32MiB", "16MiB", "8MiB", "4MiB", "1MiB"]'
concurrency = "1"
concurrency = "10"
[[groups]]
id = "providers"

View File

@ -258,7 +258,7 @@ func runProvider(ctx context.Context, runenv *runtime.RunEnv, initCtx *run.InitC
// file with random data
file := files.NewReaderFile(io.LimitReader(rand.Reader, int64(size)))
const unixfsChunkSize uint64 = 1 << 10
const unixfsChunkSize uint64 = 1 << 20
const unixfsLinksPerLevel = 1024
params := ihelper.DagBuilderParams{