client: cleanup output types
[fio.git] / examples / steadystate.fio
1 #
2 # Example job file for steady state job termination
3 # Use --output-format=json for detailed information
4 #
5 # For Windows, change the file names
6 #
7
8 [global]
9 threads=1
10 group_reporting=1
11 time_based
12 size=128m
13
14 [ss-write]
15 filename=/dev/null
16 rw=write
17 bs=128k
18 numjobs=4
19 runtime=5m
20 ss=iops:10%
21 ss_dur=30s
22 ss_ramp=10s
23 #
24 # Begin ss detection 10s after job starts
25 # Terminate job when largest deviation from mean IOPS is 10%
26 # Use a rolling 30s window for deviations
27 #
28
29
30 [ss-read]
31 new_group
32 stonewall
33 filename=/dev/zero
34 rw=randread
35 bs=4k
36 numjobs=4
37 runtime=5m
38 ss=bw_slope:1%
39 ss_dur=10s
40 ss_ramp=5s
41 #
42 # Begin ss detection 5s after job starts
43 # Terminate job when bandwidth slope is less than 1% of avg bw
44 # Use a rolling 10s window for bw measurements
45 #