-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbenchmarks_config.example.yml
44 lines (37 loc) · 1.07 KB
/
benchmarks_config.example.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Configuration file for the benchmarks. Copy it to benchmarks_config.yml before making changes.
# The benchmark will test every combination of the different parameters defined in this file.
traces:
# Either synthetic = a list of the successive sizes of the cluster
- synthetic: [5, 6, 7, 8, 9, 9, 8, 7, 6]
# Or a trace database in the FTA format
- database: dummy.db
- database: websites02.db
# Available options: min_time, max_time, time_factor
min_time: 6033120
max_time: 6035490
# List of erasure codes configurations
erasure_codes:
- code: Null
stripe: 10
parity: 0
src: 0
- code: ReedSolomon
stripe: 10
parity: 4
src: 0
- code: SimpleRegenerating
stripe: 10
parity: 6
src: 5
# Increment to run the benchmarks multiple times
execute_times: 1
# To execute every method starting with bench_ in benchmarks_impl.py
# benches: bench_
# To selectively enable benchmarks
benches:
# Run the benchmark with default parameters
- name: bench_kill
# Specify specific parameters
- name: bench_dd
params:
block_count: 100