[PATCH] Add option for terse parseable output
[fio.git] / README
... / ...
CommitLineData
1fio
2---
3
4fio is a tool that will spawn a number of threads or processes doing a
5particular type of io action as specified by the user. fio takes a
6number of global parameters, each inherited by the thread unless
7otherwise parameters given to them overriding that setting is given.
8The typical use of fio is to write a job file matching the io load
9one wants to simulate.
10
11
12Source
13------
14
15fio resides in a git repo, the canonical place is:
16
17git://brick.kernel.dk/data/git/fio.git
18
19Snapshots are frequently generated and they include the git meta data as
20well. You can download them here:
21
22http://brick.kernel.dk/snaps/
23
24Pascal Bleser <guru@unixtech.be> has fio RPMs in his repository, you
25can find them here:
26
27http://linux01.gwdg.de/~pbleser/rpm-navigation.php?cat=System/fio
28
29
30Building
31--------
32
33Just type 'make' and 'make install'. If on FreeBSD, for now you have to
34specify the FreeBSD Makefile with -f, eg:
35
36$ make -f Makefile.Freebsd && make -f Makefile.FreeBSD install
37
38Likewise with OpenSolaris, use the Makefile.solaris to compile there.
39This might change in the future if I opt for an autoconf type setup.
40
41
42Command line
43------------
44
45$ fio
46 -t <sec> Runtime in seconds
47 -l Generate per-job latency logs
48 -w Generate per-job bandwidth logs
49 -f <file> Read <file> for job descriptions
50 -o <file> Log output to file
51 -m Minimal (terse) output
52 -h Print help info
53 -v Print version information and exit
54
55Any parameters following the options will be assumed to be job files.
56You can add as many as you want, each job file will be regarded as a
57separate group and fio will stonewall it's execution.
58
59
60Job file
61--------
62
63Only a few options can be controlled with command line parameters,
64generally it's a lot easier to just write a simple job file to describe
65the workload. The job file format is in the ini style format, as it's
66easy to read and write for the user.
67
68The job file parameters are:
69
70 name=x Use 'x' as the identifier for this job.
71 directory=x Use 'x' as the top level directory for storing files
72 rw=x 'x' may be: read, randread, write, randwrite,
73 rw (read-write mix), randrw (read-write random mix)
74 rwmixcycle=x Base cycle for switching between read and write
75 in msecs.
76 rwmixread=x 'x' percentage of rw mix ios will be reads. If
77 rwmixwrite is also given, the last of the two will
78 be used if they don't add up to 100%.
79 rwmixwrite=x 'x' percentage of rw mix ios will be writes. See
80 rwmixread.
81 rand_repeatable=x The sequence of random io blocks can be repeatable
82 across runs, if 'x' is 1.
83 size=x Set file size to x bytes (x string can include k/m/g)
84 ioengine=x 'x' may be: aio/libaio/linuxaio for Linux aio,
85 posixaio for POSIX aio, sync for regular read/write io,
86 mmap for mmap'ed io, splice for using splice/vmsplice,
87 or sgio for direct SG_IO io. The latter only works on
88 Linux on SCSI (or SCSI-like devices, such as
89 usb-storage or sata/libata driven) devices.
90 iodepth=x For async io, allow 'x' ios in flight
91 overwrite=x If 'x', layout a write file first.
92 prio=x Run io at prio X, 0-7 is the kernel allowed range
93 prioclass=x Run io at prio class X
94 bs=x Use 'x' for thread blocksize. May include k/m postfix.
95 bsrange=x-y Mix thread block sizes randomly between x and y. May
96 also include k/m postfix.
97 direct=x 1 for direct IO, 0 for buffered IO
98 thinktime=x "Think" x usec after each io
99 rate=x Throttle rate to x KiB/sec
100 ratemin=x Quit if rate of x KiB/sec can't be met
101 ratecycle=x ratemin averaged over x msecs
102 cpumask=x Only allow job to run on CPUs defined by mask.
103 fsync=x If writing, fsync after every x blocks have been written
104 startdelay=x Start this thread x seconds after startup
105 timeout=x Terminate x seconds after startup
106 offset=x Start io at offset x (x string can include k/m/g)
107 invalidate=x Invalidate page cache for file prior to doing io
108 sync=x Use sync writes if x and writing
109 mem=x If x == malloc, use malloc for buffers. If x == shm,
110 use shm for buffers. If x == mmap, use anon mmap.
111 exitall When one thread quits, terminate the others
112 bwavgtime=x Average bandwidth stats over an x msec window.
113 create_serialize=x If 'x', serialize file creation.
114 create_fsync=x If 'x', run fsync() after file creation.
115 end_fsync=x If 'x', run fsync() after end-of-job.
116 loops=x Run the job 'x' number of times.
117 verify=x If 'x' == md5, use md5 for verifies. If 'x' == crc32,
118 use crc32 for verifies. md5 is 'safer', but crc32 is
119 a lot faster. Only makes sense for writing to a file.
120 stonewall Wait for preceeding jobs to end before running.
121 numjobs=x Create 'x' similar entries for this job
122 thread Use pthreads instead of forked jobs
123 zonesize=x
124 zoneskip=y Zone options must be paired. If given, the job
125 will skip y bytes for every x read/written. This
126 can be used to gauge hard drive speed over the entire
127 platter, without reading everything. Both x/y can
128 include k/m/g suffix.
129 iolog=x Open and read io pattern from file 'x'. The file must
130 contain one io action per line in the following format:
131 rw, offset, length
132 where with rw=0/1 for read/write, and the offset
133 and length entries being in bytes.
134 write_iolog=x Write an iolog to file 'x' in the same format as iolog.
135 The iolog options are exclusive, if both given the
136 read iolog will be performed.
137 lockmem=x Lock down x amount of memory on the machine, to
138 simulate a machine with less memory available. x can
139 include k/m/g suffix.
140 nice=x Run job at given nice value.
141 exec_prerun=x Run 'x' before job io is begun.
142 exec_postrun=x Run 'x' after job io has finished.
143 ioscheduler=x Use ioscheduler 'x' for this job.
144
145
146Examples using a job file
147-------------------------
148
149Example 1) Two random readers
150
151Lets say we want to simulate two threads reading randomly from a file
152each. They will be doing IO in 4KiB chunks, using raw (O_DIRECT) IO.
153Since they share most parameters, we'll put those in the [global]
154section. Job 1 will use a 128MiB file, job 2 will use a 256MiB file.
155
156; ---snip---
157
158[global]
159ioengine=sync ; regular read/write(2), the default
160rw=randread
161bs=4k
162direct=1
163
164[file1]
165size=128m
166
167[file2]
168size=256m
169
170; ---snip---
171
172Generally the [] bracketed name specifies a file name, but the "global"
173keyword is reserved for setting options that are inherited by each
174subsequent job description. It's possible to have several [global]
175sections in the job file, each one adds options that are inherited by
176jobs defined below it. The name can also point to a block device, such
177as /dev/sda. To run the above job file, simply do:
178
179$ fio jobfile
180
181Example 2) Many random writers
182
183Say we want to exercise the IO subsystem some more. We'll define 64
184threads doing random buffered writes. We'll let each thread use async io
185with a depth of 4 ios in flight. A job file would then look like this:
186
187; ---snip---
188
189[global]
190ioengine=libaio
191iodepth=4
192rw=randwrite
193bs=32k
194direct=0
195size=64m
196
197[files]
198numjobs=64
199
200; ---snip---
201
202This will create files.[0-63] and perform the random writes to them.
203
204There are endless ways to define jobs, the examples/ directory contains
205a few more examples.
206
207
208Interpreting the output
209-----------------------
210
211fio spits out a lot of output. While running, fio will display the
212status of the jobs created. An example of that would be:
213
214Threads running: 1: [_r] [24.79% done] [eta 00h:01m:31s]
215
216The characters inside the square brackets denote the current status of
217each thread. The possible values (in typical life cycle order) are:
218
219Idle Run
220---- ---
221P Thread setup, but not started.
222C Thread created.
223I Thread initialized, waiting.
224 R Running, doing sequential reads.
225 r Running, doing random reads.
226 W Running, doing sequential writes.
227 w Running, doing random writes.
228 M Running, doing mixed sequential reads/writes.
229 m Running, doing mixed random reads/writes.
230 F Running, currently waiting for fsync()
231V Running, doing verification of written data.
232E Thread exited, not reaped by main thread yet.
233_ Thread reaped.
234
235The other values are fairly self explanatory - number of threads
236currently running and doing io, and the estimated completion percentage
237and time for the running group. It's impossible to estimate runtime
238of the following groups (if any).
239
240When fio is done (or interrupted by ctrl-c), it will show the data for
241each thread, group of threads, and disks in that order. For each data
242direction, the output looks like:
243
244Client1 (g=0): err= 0:
245 write: io= 32MiB, bw= 666KiB/s, runt= 50320msec
246 slat (msec): min= 0, max= 136, avg= 0.03, dev= 1.92
247 clat (msec): min= 0, max= 631, avg=48.50, dev=86.82
248 bw (KiB/s) : min= 0, max= 1196, per=51.00%, avg=664.02, dev=681.68
249 cpu : usr=1.49%, sys=0.25%, ctx=7969
250
251The client number is printed, along with the group id and error of that
252thread. Below is the io statistics, here for writes. In the order listed,
253they denote:
254
255io= Number of megabytes io performed
256bw= Average bandwidth rate
257runt= The runtime of that thread
258 slat= Submission latency (avg being the average, dev being the
259 standard deviation). This is the time it took to submit
260 the io. For sync io, the slat is really the completion
261 latency, since queue/complete is one operation there.
262 clat= Completion latency. Same names as slat, this denotes the
263 time from submission to completion of the io pieces. For
264 sync io, clat will usually be equal (or very close) to 0,
265 as the time from submit to complete is basically just
266 CPU time (io has already been done, see slat explanation).
267 bw= Bandwidth. Same names as the xlat stats, but also includes
268 an approximate percentage of total aggregate bandwidth
269 this thread received in this group. This last value is
270 only really useful if the threads in this group are on the
271 same disk, since they are then competing for disk access.
272cpu= CPU usage. User and system time, along with the number
273 of context switches this thread went through.
274
275After each client has been listed, the group statistics are printed. They
276will look like this:
277
278Run status group 0 (all jobs):
279 READ: io=64MiB, aggrb=22178, minb=11355, maxb=11814, mint=2840msec, maxt=2955msec
280 WRITE: io=64MiB, aggrb=1302, minb=666, maxb=669, mint=50093msec, maxt=50320msec
281
282For each data direction, it prints:
283
284io= Number of megabytes io performed.
285aggrb= Aggregate bandwidth of threads in this group.
286minb= The minimum average bandwidth a thread saw.
287maxb= The maximum average bandwidth a thread saw.
288mint= The smallest runtime of the threads in that group.
289maxt= The longest runtime of the threads in that group.
290
291And finally, the disk statistics are printed. They will look like this:
292
293Disk stats (read/write):
294 sda: ios=16398/16511, merge=30/162, ticks=6853/819634, in_queue=826487, util=100.00%
295
296Each value is printed for both reads and writes, with reads first. The
297numbers denote:
298
299ios= Number of ios performed by all groups.
300merge= Number of merges io the io scheduler.
301ticks= Number of ticks we kept the disk busy.
302io_queue= Total time spent in the disk queue.
303util= The disk utilization. A value of 100% means we kept the disk
304 busy constantly, 50% would be a disk idling half of the time.
305
306
307Terse output
308------------
309
310For scripted usage where you typically want to generate tables or graphs
311of the results, fio can output the results in a comma seperated format.
312The format is one long line of values, such as:
313
314client1,0,0,936,331,2894,0,0,0.000000,0.000000,1,170,22.115385,34.290410,16,714,84.252874%,366.500000,566.417819,3496,1237,2894,0,0,0.000000,0.000000,0,246,6.671625,21.436952,0,2534,55.465300%,1406.600000,2008.044216,0.000000%,0.431928%,1109
315
316Split up, the format is as follows:
317
318 jobname, groupid, error
319 READ status:
320 KiB IO, bandwidth (KiB/sec), runtime (msec)
321 Submission latency: min, max, mean, deviation
322 Completion latency: min, max, mean, deviation
323 Bw: min, max, aggreate percentage of total, mean, deviation
324 WRITE status:
325 KiB IO, bandwidth (KiB/sec), runtime (msec)
326 Submission latency: min, max, mean, deviation
327 Completion latency: min, max, mean, deviation
328 Bw: min, max, aggreate percentage of total, mean, deviation
329 CPU usage: user, system, context switches
330
331
332Author
333------
334
335Fio was written by Jens Axboe <axboe@suse.de> to enable flexible testing
336of the Linux IO subsystem and schedulers. He got tired of writing
337specific test applications to simulate a given workload, and found that
338the existing io benchmark/test tools out there weren't flexible enough
339to do what he wanted.
340
341Jens Axboe <axboe@suse.de> 20060609
342