Kill fusion atomic write engine
[fio.git] / examples / steadystate.fio
CommitLineData
c93fae17
VF
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]
9threads=1
10group_reporting=1
11time_based
12size=128m
13
14[ss-write]
15filename=/dev/null
16rw=write
17bs=128k
18numjobs=4
19runtime=5m
20ss=iops:10%
21ss_dur=30s
22ss_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]
31new_group
32stonewall
33filename=/dev/zero
34rw=randread
35bs=4k
36numjobs=4
37runtime=5m
38ss=bw_slope:1%
39ss_dur=10s
40ss_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#