crc/test: a few more cleanups and code unifications
[fio.git] / HOWTO
CommitLineData
71bfa161
JA
1Table of contents
2-----------------
3
41. Overview
52. How fio works
63. Running fio
74. Job file format
85. Detailed list of parameters
96. Normal output
107. Terse output
25c8b9d7 118. Trace file format
43f09da1 129. CPU idleness profiling
71bfa161
JA
13
141.0 Overview and history
15------------------------
16fio was originally written to save me the hassle of writing special test
17case programs when I wanted to test a specific workload, either for
18performance reasons or to find/reproduce a bug. The process of writing
19such a test app can be tiresome, especially if you have to do it often.
20Hence I needed a tool that would be able to simulate a given io workload
21without resorting to writing a tailored test case again and again.
22
23A test work load is difficult to define, though. There can be any number
24of processes or threads involved, and they can each be using their own
25way of generating io. You could have someone dirtying large amounts of
26memory in an memory mapped file, or maybe several threads issuing
27reads using asynchronous io. fio needed to be flexible enough to
28simulate both of these cases, and many more.
29
302.0 How fio works
31-----------------
32The first step in getting fio to simulate a desired io workload, is
33writing a job file describing that specific setup. A job file may contain
34any number of threads and/or files - the typical contents of the job file
35is a global section defining shared parameters, and one or more job
36sections describing the jobs involved. When run, fio parses this file
37and sets everything up as described. If we break down a job from top to
38bottom, it contains the following basic parameters:
39
40 IO type Defines the io pattern issued to the file(s).
41 We may only be reading sequentially from this
42 file(s), or we may be writing randomly. Or even
43 mixing reads and writes, sequentially or randomly.
44
45 Block size In how large chunks are we issuing io? This may be
46 a single value, or it may describe a range of
47 block sizes.
48
49 IO size How much data are we going to be reading/writing.
50
51 IO engine How do we issue io? We could be memory mapping the
52 file, we could be using regular read/write, we
d0ff85df 53 could be using splice, async io, syslet, or even
71bfa161
JA
54 SG (SCSI generic sg).
55
6c219763 56 IO depth If the io engine is async, how large a queuing
71bfa161
JA
57 depth do we want to maintain?
58
59 IO type Should we be doing buffered io, or direct/raw io?
60
61 Num files How many files are we spreading the workload over.
62
63 Num threads How many threads or processes should we spread
64 this workload over.
66c098b8 65
71bfa161
JA
66The above are the basic parameters defined for a workload, in addition
67there's a multitude of parameters that modify other aspects of how this
68job behaves.
69
70
713.0 Running fio
72---------------
73See the README file for command line parameters, there are only a few
74of them.
75
76Running fio is normally the easiest part - you just give it the job file
77(or job files) as parameters:
78
79$ fio job_file
80
81and it will start doing what the job_file tells it to do. You can give
82more than one job file on the command line, fio will serialize the running
83of those files. Internally that is the same as using the 'stonewall'
550b1db6 84parameter described in the parameter section.
71bfa161 85
b4692828
JA
86If the job file contains only one job, you may as well just give the
87parameters on the command line. The command line parameters are identical
88to the job parameters, with a few extra that control global parameters
89(see README). For example, for the job file parameter iodepth=2, the
c2b1e753
JA
90mirror command line option would be --iodepth 2 or --iodepth=2. You can
91also use the command line for giving more than one job entry. For each
92--name option that fio sees, it will start a new job with that name.
93Command line entries following a --name entry will apply to that job,
94until there are no more entries or a new --name entry is seen. This is
95similar to the job file options, where each option applies to the current
96job until a new [] job entry is seen.
b4692828 97
71bfa161
JA
98fio does not need to run as root, except if the files or devices specified
99in the job section requires that. Some other options may also be restricted,
6c219763 100such as memory locking, io scheduler switching, and decreasing the nice value.
71bfa161
JA
101
102
1034.0 Job file format
104-------------------
105As previously described, fio accepts one or more job files describing
106what it is supposed to do. The job file format is the classic ini file,
107where the names enclosed in [] brackets define the job name. You are free
108to use any ascii name you want, except 'global' which has special meaning.
109A global section sets defaults for the jobs described in that file. A job
110may override a global section parameter, and a job file may even have
111several global sections if so desired. A job is only affected by a global
65db0851
JA
112section residing above it. If the first character in a line is a ';' or a
113'#', the entire line is discarded as a comment.
71bfa161 114
3c54bc46 115So let's look at a really simple job file that defines two processes, each
b22989b9 116randomly reading from a 128MB file.
71bfa161
JA
117
118; -- start job file --
119[global]
120rw=randread
121size=128m
122
123[job1]
124
125[job2]
126
127; -- end job file --
128
129As you can see, the job file sections themselves are empty as all the
130described parameters are shared. As no filename= option is given, fio
c2b1e753
JA
131makes up a filename for each of the jobs as it sees fit. On the command
132line, this job would look as follows:
133
134$ fio --name=global --rw=randread --size=128m --name=job1 --name=job2
135
71bfa161 136
3c54bc46 137Let's look at an example that has a number of processes writing randomly
71bfa161
JA
138to files.
139
140; -- start job file --
141[random-writers]
142ioengine=libaio
143iodepth=4
144rw=randwrite
145bs=32k
146direct=0
147size=64m
148numjobs=4
149
150; -- end job file --
151
152Here we have no global section, as we only have one job defined anyway.
153We want to use async io here, with a depth of 4 for each file. We also
b22989b9 154increased the buffer size used to 32KB and define numjobs to 4 to
71bfa161 155fork 4 identical jobs. The result is 4 processes each randomly writing
b22989b9 156to their own 64MB file. Instead of using the above job file, you could
b4692828
JA
157have given the parameters on the command line. For this case, you would
158specify:
159
160$ fio --name=random-writers --ioengine=libaio --iodepth=4 --rw=randwrite --bs=32k --direct=0 --size=64m --numjobs=4
71bfa161 161
74929ac2
JA
1624.1 Environment variables
163-------------------------
164
3c54bc46
AC
165fio also supports environment variable expansion in job files. Any
166substring of the form "${VARNAME}" as part of an option value (in other
167words, on the right of the `='), will be expanded to the value of the
168environment variable called VARNAME. If no such environment variable
169is defined, or VARNAME is the empty string, the empty string will be
170substituted.
171
172As an example, let's look at a sample fio invocation and job file:
173
174$ SIZE=64m NUMJOBS=4 fio jobfile.fio
175
176; -- start job file --
177[random-writers]
178rw=randwrite
179size=${SIZE}
180numjobs=${NUMJOBS}
181; -- end job file --
182
183This will expand to the following equivalent job file at runtime:
184
185; -- start job file --
186[random-writers]
187rw=randwrite
188size=64m
189numjobs=4
190; -- end job file --
191
71bfa161
JA
192fio ships with a few example job files, you can also look there for
193inspiration.
194
74929ac2
JA
1954.2 Reserved keywords
196---------------------
197
198Additionally, fio has a set of reserved keywords that will be replaced
199internally with the appropriate value. Those keywords are:
200
201$pagesize The architecture page size of the running system
202$mb_memory Megabytes of total memory in the system
203$ncpus Number of online available CPUs
204
205These can be used on the command line or in the job file, and will be
206automatically substituted with the current system values when the job
892a6ffc
JA
207is run. Simple math is also supported on these keywords, so you can
208perform actions like:
209
210size=8*$mb_memory
211
212and get that properly expanded to 8 times the size of memory in the
213machine.
74929ac2 214
71bfa161
JA
215
2165.0 Detailed list of parameters
217-------------------------------
218
219This section describes in details each parameter associated with a job.
220Some parameters take an option of a given type, such as an integer or
221a string. The following types are used:
222
223str String. This is a sequence of alpha characters.
b09da8fa 224time Integer with possible time suffix. In seconds unless otherwise
e417fd66 225 specified, use eg 10m for 10 minutes. Accepts s/m/h for seconds,
0de5b26f
JA
226 minutes, and hours, and accepts 'ms' (or 'msec') for milliseconds,
227 and 'us' (or 'usec') for microseconds.
b09da8fa
JA
228int SI integer. A whole number value, which may contain a suffix
229 describing the base of the number. Accepted suffixes are k/m/g/t/p,
230 meaning kilo, mega, giga, tera, and peta. The suffix is not case
57fc29fa
JA
231 sensitive, and you may also include trailing 'b' (eg 'kb' is the same
232 as 'k'). So if you want to specify 4096, you could either write
b09da8fa 233 out '4096' or just give 4k. The suffixes signify base 2 values, so
57fc29fa
JA
234 1024 is 1k and 1024k is 1m and so on, unless the suffix is explicitly
235 set to a base 10 value using 'kib', 'mib', 'gib', etc. If that is the
236 case, then 1000 is used as the multiplier. This can be handy for
237 disks, since manufacturers generally use base 10 values when listing
238 the capacity of a drive. If the option accepts an upper and lower
239 range, use a colon ':' or minus '-' to separate such values. May also
240 include a prefix to indicate numbers base. If 0x is used, the number
241 is assumed to be hexadecimal. See irange.
71bfa161
JA
242bool Boolean. Usually parsed as an integer, however only defined for
243 true and false (1 and 0).
b09da8fa 244irange Integer range with suffix. Allows value range to be given, such
bf9a3edb 245 as 1024-4096. A colon may also be used as the separator, eg
0c9baf91
JA
246 1k:4k. If the option allows two sets of ranges, they can be
247 specified with a ',' or '/' delimiter: 1k-4k/8k-32k. Also see
f7fa2653 248 int.
83349190 249float_list A list of floating numbers, separated by a ':' character.
71bfa161
JA
250
251With the above in mind, here follows the complete list of fio job
252parameters.
253
254name=str ASCII name of the job. This may be used to override the
255 name printed by fio for this job. Otherwise the job
c2b1e753 256 name is used. On the command line this parameter has the
6c219763 257 special purpose of also signaling the start of a new
c2b1e753 258 job.
71bfa161 259
61697c37
JA
260description=str Text description of the job. Doesn't do anything except
261 dump this text description when this job is run. It's
262 not parsed.
263
3776041e 264directory=str Prefix filenames with this directory. Used to place files
67445b63
JA
265 in a different location than "./". See the 'filename' option
266 for escaping certain characters.
71bfa161
JA
267
268filename=str Fio normally makes up a filename based on the job name,
269 thread number, and file number. If you want to share
270 files between threads in a job or several jobs, specify
ed92ac0c 271 a filename for each of them to override the default. If
414c2a3e 272 the ioengine used is 'net', the filename is the host, port,
0fd666bf 273 and protocol to use in the format of =host,port,protocol.
414c2a3e
JA
274 See ioengine=net for more. If the ioengine is file based, you
275 can specify a number of files by separating the names with a
276 ':' colon. So if you wanted a job to open /dev/sda and /dev/sdb
277 as the two working files, you would use
30a4588a
JA
278 filename=/dev/sda:/dev/sdb. On Windows, disk devices are
279 accessed as \\.\PhysicalDrive0 for the first device,
280 \\.\PhysicalDrive1 for the second etc. Note: Windows and
281 FreeBSD prevent write access to areas of the disk containing
282 in-use data (e.g. filesystems).
283 If the wanted filename does need to include a colon, then
284 escape that with a '\' character. For instance, if the filename
285 is "/dev/dsk/foo@3,0:c", then you would use
286 filename="/dev/dsk/foo@3,0\:c". '-' is a reserved name, meaning
287 stdin or stdout. Which of the two depends on the read/write
288 direction set.
71bfa161 289
de98bd30
JA
290filename_format=str
291 If sharing multiple files between jobs, it is usually necessary
292 to have fio generate the exact names that you want. By default,
293 fio will name a file based on the default file format
294 specification of jobname.jobnumber.filenumber. With this
295 option, that can be customized. Fio will recognize and replace
296 the following keywords in this string:
297
298 $jobname
299 The name of the worker thread or process.
300
301 $jobnum
302 The incremental number of the worker thread or
303 process.
304
305 $filenum
306 The incremental number of the file for that worker
307 thread or process.
308
309 To have dependent jobs share a set of files, this option can
310 be set to have fio generate filenames that are shared between
311 the two. For instance, if testfiles.$filenum is specified,
312 file number 4 for any job will be named testfiles.4. The
313 default of $jobname.$jobnum.$filenum will be used if
314 no other format specifier is given.
315
bbf6b540
JA
316opendir=str Tell fio to recursively add any file it can find in this
317 directory and down the file system tree.
318
3776041e 319lockfile=str Fio defaults to not locking any files before it does
4d4e80f2
JA
320 IO to them. If a file or file descriptor is shared, fio
321 can serialize IO to that file to make the end result
322 consistent. This is usual for emulating real workloads that
323 share files. The lock modes are:
324
325 none No locking. The default.
326 exclusive Only one thread/process may do IO,
327 excluding all others.
328 readwrite Read-write locking on the file. Many
329 readers may access the file at the
330 same time, but writes get exclusive
331 access.
332
d3aad8f2 333readwrite=str
71bfa161
JA
334rw=str Type of io pattern. Accepted values are:
335
336 read Sequential reads
337 write Sequential writes
338 randwrite Random writes
339 randread Random reads
10b023db 340 rw,readwrite Sequential mixed reads and writes
71bfa161
JA
341 randrw Random mixed reads and writes
342
343 For the mixed io types, the default is to split them 50/50.
344 For certain types of io the result may still be skewed a bit,
211097b2 345 since the speed may be different. It is possible to specify
38dad62d
JA
346 a number of IO's to do before getting a new offset, this is
347 one by appending a ':<nr>' to the end of the string given.
348 For a random read, it would look like 'rw=randread:8' for
059b0802 349 passing in an offset modifier with a value of 8. If the
ddb754db 350 suffix is used with a sequential IO pattern, then the value
059b0802
JA
351 specified will be added to the generated offset for each IO.
352 For instance, using rw=write:4k will skip 4k for every
353 write. It turns sequential IO into sequential IO with holes.
354 See the 'rw_sequencer' option.
38dad62d
JA
355
356rw_sequencer=str If an offset modifier is given by appending a number to
357 the rw=<str> line, then this option controls how that
358 number modifies the IO offset being generated. Accepted
359 values are:
360
361 sequential Generate sequential offset
362 identical Generate the same offset
363
364 'sequential' is only useful for random IO, where fio would
365 normally generate a new random offset for every IO. If you
366 append eg 8 to randread, you would get a new random offset for
211097b2
JA
367 every 8 IO's. The result would be a seek for only every 8
368 IO's, instead of for every IO. Use rw=randread:8 to specify
38dad62d
JA
369 that. As sequential IO is already sequential, setting
370 'sequential' for that would not result in any differences.
371 'identical' behaves in a similar fashion, except it sends
372 the same offset 8 number of times before generating a new
373 offset.
71bfa161 374
90fef2d1
JA
375kb_base=int The base unit for a kilobyte. The defacto base is 2^10, 1024.
376 Storage manufacturers like to use 10^3 or 1000 as a base
377 ten unit instead, for obvious reasons. Allow values are
378 1024 or 1000, with 1024 being the default.
379
771e58be
JA
380unified_rw_reporting=bool Fio normally reports statistics on a per
381 data direction basis, meaning that read, write, and trim are
382 accounted and reported separately. If this option is set,
383 the fio will sum the results and report them as "mixed"
384 instead.
385
ee738499
JA
386randrepeat=bool For random IO workloads, seed the generator in a predictable
387 way so that results are repeatable across repetitions.
388
04778baf
JA
389randseed=int Seed the random number generators based on this seed value, to
390 be able to control what sequence of output is being generated.
391 If not set, the random sequence depends on the randrepeat
392 setting.
393
2615cc4b
JA
394use_os_rand=bool Fio can either use the random generator supplied by the OS
395 to generator random offsets, or it can use it's own internal
396 generator (based on Tausworthe). Default is to use the
397 internal generator, which is often of better quality and
398 faster.
399
a596f047
EG
400fallocate=str Whether pre-allocation is performed when laying down files.
401 Accepted values are:
402
403 none Do not pre-allocate space
404 posix Pre-allocate via posix_fallocate()
405 keep Pre-allocate via fallocate() with
406 FALLOC_FL_KEEP_SIZE set
407 0 Backward-compatible alias for 'none'
408 1 Backward-compatible alias for 'posix'
409
410 May not be available on all supported platforms. 'keep' is only
411 available on Linux.If using ZFS on Solaris this must be set to
412 'none' because ZFS doesn't support it. Default: 'posix'.
7bc8c2cf 413
d2f3ac35
JA
414fadvise_hint=bool By default, fio will use fadvise() to advise the kernel
415 on what IO patterns it is likely to issue. Sometimes you
416 want to test specific IO patterns without telling the
417 kernel about it, in which case you can disable this option.
418 If set, fio will use POSIX_FADV_SEQUENTIAL for sequential
419 IO and POSIX_FADV_RANDOM for random IO.
420
f7fa2653 421size=int The total size of file io for this job. Fio will run until
7616cafe
JA
422 this many bytes has been transferred, unless runtime is
423 limited by other options (such as 'runtime', for instance).
3776041e 424 Unless specific nrfiles and filesize options are given,
7616cafe 425 fio will divide this size between the available files
d6667268 426 specified by the job. If not set, fio will use the full
550b1db6
AG
427 size of the given files or devices. If the files do not
428 exist, size must be given. It is also possible to give
429 size as a percentage between 1 and 100. If size=20% is
430 given, fio will use 20% of the full size of the given
7bb59102 431 files or devices.
71bfa161 432
77731b29
JA
433io_limit=int Normally fio operates within the region set by 'size', which
434 means that the 'size' option sets both the region and size of
435 IO to be performed. Sometimes that is not what you want. With
436 this option, it is possible to define just the amount of IO
437 that fio should do. For instance, if 'size' is set to 20G and
438 'io_limit' is set to 5G, fio will perform IO within the first
439 20G but exit when 5G have been done.
440
f7fa2653 441filesize=int Individual file sizes. May be a range, in which case fio
9c60ce64
JA
442 will select sizes for files at random within the given range
443 and limited to 'size' in total (if that is given). If not
444 given, each created file is the same size.
445
bedc9dc2
JA
446file_append=bool Perform IO after the end of the file. Normally fio will
447 operate within the size of a file. If this option is set, then
448 fio will append to the file instead. This has identical
0aae4ce7
JA
449 behavior to setting offset to the size of a file. This option
450 is ignored on non-regular files.
bedc9dc2 451
74586c1e
JA
452fill_device=bool
453fill_fs=bool Sets size to something really large and waits for ENOSPC (no
aa31f1f1 454 space left on device) as the terminating condition. Only makes
de98bd30 455 sense with sequential write. For a read workload, the mount
4f12432e
JA
456 point will be filled first then IO started on the result. This
457 option doesn't make sense if operating on a raw device node,
458 since the size of that is already known by the file system.
459 Additionally, writing beyond end-of-device will not return
460 ENOSPC there.
aa31f1f1 461
f7fa2653
JA
462blocksize=int
463bs=int The block size used for the io units. Defaults to 4k. Values
464 can be given for both read and writes. If a single int is
465 given, it will apply to both. If a second int is specified
f90eff5a 466 after a comma, it will apply to writes only. In other words,
d9472271
JA
467 the format is either bs=read_and_write or bs=read,write,trim.
468 bs=4k,8k will thus use 4k blocks for reads, 8k blocks for
469 writes, and 8k for trims. You can terminate the list with
470 a trailing comma. bs=4k,8k, would use the default value for
471 trims.. If you only wish to set the write size, you
787f7e95
JA
472 can do so by passing an empty read size - bs=,8k will set
473 8k for writes and leave the read default value.
a00735e6 474
2b7a01d0
JA
475blockalign=int
476ba=int At what boundary to align random IO offsets. Defaults to
477 the same as 'blocksize' the minimum blocksize given.
478 Minimum alignment is typically 512b for using direct IO,
479 though it usually depends on the hardware block size. This
480 option is mutually exclusive with using a random map for
481 files, so it will turn off that option.
482
d3aad8f2 483blocksize_range=irange
71bfa161
JA
484bsrange=irange Instead of giving a single block size, specify a range
485 and fio will mix the issued io block sizes. The issued
486 io unit will always be a multiple of the minimum value
f90eff5a
JA
487 given (also see bs_unaligned). Applies to both reads and
488 writes, however a second range can be given after a comma.
489 See bs=.
a00735e6 490
564ca972
JA
491bssplit=str Sometimes you want even finer grained control of the
492 block sizes issued, not just an even split between them.
493 This option allows you to weight various block sizes,
494 so that you are able to define a specific amount of
495 block sizes issued. The format for this option is:
496
497 bssplit=blocksize/percentage:blocksize/percentage
498
499 for as many block sizes as needed. So if you want to define
500 a workload that has 50% 64k blocks, 10% 4k blocks, and
501 40% 32k blocks, you would write:
502
503 bssplit=4k/10:64k/50:32k/40
504
505 Ordering does not matter. If the percentage is left blank,
506 fio will fill in the remaining values evenly. So a bssplit
507 option like this one:
508
509 bssplit=4k/50:1k/:32k/
510
511 would have 50% 4k ios, and 25% 1k and 32k ios. The percentages
512 always add up to 100, if bssplit is given a range that adds
513 up to more, it will error out.
514
720e84ad
JA
515 bssplit also supports giving separate splits to reads and
516 writes. The format is identical to what bs= accepts. You
517 have to separate the read and write parts with a comma. So
518 if you want a workload that has 50% 2k reads and 50% 4k reads,
519 while having 90% 4k writes and 10% 8k writes, you would
520 specify:
521
522 bssplit=2k/50:4k/50,4k/90,8k/10
523
d3aad8f2 524blocksize_unaligned
690adba3
JA
525bs_unaligned If this option is given, any byte size value within bsrange
526 may be used as a block range. This typically wont work with
527 direct IO, as that normally requires sector alignment.
71bfa161 528
6aca9b3d
JA
529bs_is_seq_rand If this option is set, fio will use the normal read,write
530 blocksize settings as sequential,random instead. Any random
531 read or write will use the WRITE blocksize settings, and any
532 sequential read or write will use the READ blocksize setting.
533
e9459e5a
JA
534zero_buffers If this option is given, fio will init the IO buffers to
535 all zeroes. The default is to fill them with random data.
7750aac4
JA
536 The resulting IO buffers will not be completely zeroed,
537 unless scramble_buffers is also turned off.
e9459e5a 538
5973cafb
JA
539refill_buffers If this option is given, fio will refill the IO buffers
540 on every submit. The default is to only fill it at init
541 time and reuse that data. Only makes sense if zero_buffers
41ccd845
JA
542 isn't specified, naturally. If data verification is enabled,
543 refill_buffers is also automatically enabled.
5973cafb 544
fd68418e
JA
545scramble_buffers=bool If refill_buffers is too costly and the target is
546 using data deduplication, then setting this option will
547 slightly modify the IO buffer contents to defeat normal
548 de-dupe attempts. This is not enough to defeat more clever
549 block compression attempts, but it will stop naive dedupe of
550 blocks. Default: true.
551
c5751c62
JA
552buffer_compress_percentage=int If this is set, then fio will attempt to
553 provide IO buffer content (on WRITEs) that compress to
554 the specified level. Fio does this by providing a mix of
555 random data and zeroes. Note that this is per block size
556 unit, for file/disk wide compression level that matches
557 this setting, you'll also want to set refill_buffers.
558
559buffer_compress_chunk=int See buffer_compress_percentage. This
560 setting allows fio to manage how big the ranges of random
561 data and zeroed data is. Without this set, fio will
562 provide buffer_compress_percentage of blocksize random
563 data, followed by the remaining zeroed. With this set
564 to some chunk size smaller than the block size, fio can
565 alternate random and zeroed data throughout the IO
566 buffer.
567
ce35b1ec
JA
568buffer_pattern=str If set, fio will fill the io buffers with this pattern.
569 If not set, the contents of io buffers is defined by the other
570 options related to buffer contents. The setting can be any
571 pattern of bytes, and can be prefixed with 0x for hex values.
572
71bfa161
JA
573nrfiles=int Number of files to use for this job. Defaults to 1.
574
390b1537
JA
575openfiles=int Number of files to keep open at the same time. Defaults to
576 the same as nrfiles, can be set smaller to limit the number
577 simultaneous opens.
578
5af1c6f3
JA
579file_service_type=str Defines how fio decides which file from a job to
580 service next. The following types are defined:
581
582 random Just choose a file at random.
583
584 roundrobin Round robin over open files. This
585 is the default.
586
a086c257
JA
587 sequential Finish one file before moving on to
588 the next. Multiple files can still be
589 open depending on 'openfiles'.
590
1907dbc6
JA
591 The string can have a number appended, indicating how
592 often to switch to a new file. So if option random:4 is
593 given, fio will switch to a new random file after 4 ios
594 have been issued.
595
71bfa161
JA
596ioengine=str Defines how the job issues io to the file. The following
597 types are defined:
598
599 sync Basic read(2) or write(2) io. lseek(2) is
600 used to position the io location.
601
a31041ea 602 psync Basic pread(2) or pwrite(2) io.
603
e05af9e5 604 vsync Basic readv(2) or writev(2) IO.
1d2af02a 605
a46c5e01
JA
606 psyncv Basic preadv(2) or pwritev(2) IO.
607
15d182aa
JA
608 libaio Linux native asynchronous io. Note that Linux
609 may only support queued behaviour with
610 non-buffered IO (set direct=1 or buffered=0).
de890a1e 611 This engine defines engine specific options.
71bfa161
JA
612
613 posixaio glibc posix asynchronous io.
614
417f0068
JA
615 solarisaio Solaris native asynchronous io.
616
03e20d68
BC
617 windowsaio Windows native asynchronous io.
618
71bfa161
JA
619 mmap File is memory mapped and data copied
620 to/from using memcpy(3).
621
622 splice splice(2) is used to transfer the data and
623 vmsplice(2) to transfer data from user
624 space to the kernel.
625
d0ff85df
JA
626 syslet-rw Use the syslet system calls to make
627 regular read/write async.
628
71bfa161 629 sg SCSI generic sg v3 io. May either be
6c219763 630 synchronous using the SG_IO ioctl, or if
71bfa161
JA
631 the target is an sg character device
632 we use read(2) and write(2) for asynchronous
633 io.
634
a94ea28b
JA
635 null Doesn't transfer any data, just pretends
636 to. This is mainly used to exercise fio
637 itself and for debugging/testing purposes.
638
ed92ac0c 639 net Transfer over the network to given host:port.
de890a1e
SL
640 Depending on the protocol used, the hostname,
641 port, listen and filename options are used to
642 specify what sort of connection to make, while
643 the protocol option determines which protocol
644 will be used.
645 This engine defines engine specific options.
ed92ac0c 646
9cce02e8
JA
647 netsplice Like net, but uses splice/vmsplice to
648 map data and send/receive.
de890a1e 649 This engine defines engine specific options.
9cce02e8 650
53aec0a4 651 cpuio Doesn't transfer any data, but burns CPU
ba0fbe10
JA
652 cycles according to the cpuload= and
653 cpucycle= options. Setting cpuload=85
654 will cause that job to do nothing but burn
36ecec83
GP
655 85% of the CPU. In case of SMP machines,
656 use numjobs=<no_of_cpu> to get desired CPU
657 usage, as the cpuload only loads a single
658 CPU at the desired rate.
ba0fbe10 659
e9a1806f
JA
660 guasi The GUASI IO engine is the Generic Userspace
661 Asyncronous Syscall Interface approach
662 to async IO. See
663
664 http://www.xmailserver.org/guasi-lib.html
665
666 for more info on GUASI.
667
21b8aee8 668 rdma The RDMA I/O engine supports both RDMA
eb52fa3f
BVA
669 memory semantics (RDMA_WRITE/RDMA_READ) and
670 channel semantics (Send/Recv) for the
671 InfiniBand, RoCE and iWARP protocols.
21b8aee8 672
d54fce84
DM
673 falloc IO engine that does regular fallocate to
674 simulate data transfer as fio ioengine.
675 DDIR_READ does fallocate(,mode = keep_size,)
0981fd71 676 DDIR_WRITE does fallocate(,mode = 0)
d54fce84
DM
677 DDIR_TRIM does fallocate(,mode = punch_hole)
678
679 e4defrag IO engine that does regular EXT4_IOC_MOVE_EXT
680 ioctls to simulate defragment activity in
681 request to DDIR_WRITE event
0981fd71 682
8a7bd877
JA
683 external Prefix to specify loading an external
684 IO engine object file. Append the engine
685 filename, eg ioengine=external:/tmp/foo.o
686 to load ioengine foo.o in /tmp.
687
71bfa161
JA
688iodepth=int This defines how many io units to keep in flight against
689 the file. The default is 1 for each file defined in this
690 job, can be overridden with a larger value for higher
ee72ca09
JA
691 concurrency. Note that increasing iodepth beyond 1 will not
692 affect synchronous ioengines (except for small degress when
9b836561 693 verify_async is in use). Even async engines may impose OS
ee72ca09
JA
694 restrictions causing the desired depth not to be achieved.
695 This may happen on Linux when using libaio and not setting
696 direct=1, since buffered IO is not async on that OS. Keep an
697 eye on the IO depth distribution in the fio output to verify
698 that the achieved depth is as expected. Default: 1.
71bfa161 699
4950421a 700iodepth_batch_submit=int
cb5ab512 701iodepth_batch=int This defines how many pieces of IO to submit at once.
89e820f6
JA
702 It defaults to 1 which means that we submit each IO
703 as soon as it is available, but can be raised to submit
704 bigger batches of IO at the time.
cb5ab512 705
4950421a
JA
706iodepth_batch_complete=int This defines how many pieces of IO to retrieve
707 at once. It defaults to 1 which means that we'll ask
708 for a minimum of 1 IO in the retrieval process from
709 the kernel. The IO retrieval will go on until we
710 hit the limit set by iodepth_low. If this variable is
711 set to 0, then fio will always check for completed
712 events before queuing more IO. This helps reduce
713 IO latency, at the cost of more retrieval system calls.
714
e916b390
JA
715iodepth_low=int The low water mark indicating when to start filling
716 the queue again. Defaults to the same as iodepth, meaning
717 that fio will attempt to keep the queue full at all times.
718 If iodepth is set to eg 16 and iodepth_low is set to 4, then
719 after fio has filled the queue of 16 requests, it will let
720 the depth drain down to 4 before starting to fill it again.
721
71bfa161 722direct=bool If value is true, use non-buffered io. This is usually
9b836561 723 O_DIRECT. Note that ZFS on Solaris doesn't support direct io.
93bcfd20 724 On Windows the synchronous ioengines don't support direct io.
76a43db4 725
d01612f3
CM
726atomic=bool If value is true, attempt to use atomic direct IO. Atomic
727 writes are guaranteed to be stable once acknowledged by
728 the operating system. Only Linux supports O_ATOMIC right
729 now.
730
76a43db4
JA
731buffered=bool If value is true, use buffered io. This is the opposite
732 of the 'direct' option. Defaults to true.
71bfa161 733
f7fa2653 734offset=int Start io at the given offset in the file. The data before
71bfa161
JA
735 the given offset will not be touched. This effectively
736 caps the file size at real_size - offset.
737
214ac7e0 738offset_increment=int If this is provided, then the real offset becomes
69bdd6ba
JH
739 offset + offset_increment * thread_number, where the thread
740 number is a counter that starts at 0 and is incremented for
741 each sub-job (i.e. when numjobs option is specified). This
742 option is useful if there are several jobs which are intended
743 to operate on a file in parallel disjoint segments, with
744 even spacing between the starting points.
214ac7e0 745
ddf24e42
JA
746number_ios=int Fio will normally perform IOs until it has exhausted the size
747 of the region set by size=, or if it exhaust the allocated
748 time (or hits an error condition). With this setting, the
749 range/size can be set independently of the number of IOs to
750 perform. When fio reaches this number, it will exit normally
751 and report status.
752
71bfa161
JA
753fsync=int If writing to a file, issue a sync of the dirty data
754 for every number of blocks given. For example, if you give
755 32 as a parameter, fio will sync the file for every 32
756 writes issued. If fio is using non-buffered io, we may
757 not sync the file. The exception is the sg io engine, which
6c219763 758 synchronizes the disk cache anyway.
71bfa161 759
e76b1da4 760fdatasync=int Like fsync= but uses fdatasync() to only sync data and not
5f9099ea 761 metadata blocks.
93bcfd20 762 In FreeBSD and Windows there is no fdatasync(), this falls back to
e72fa4d4 763 using fsync()
5f9099ea 764
e76b1da4
JA
765sync_file_range=str:val Use sync_file_range() for every 'val' number of
766 write operations. Fio will track range of writes that
767 have happened since the last sync_file_range() call. 'str'
768 can currently be one or more of:
769
770 wait_before SYNC_FILE_RANGE_WAIT_BEFORE
771 write SYNC_FILE_RANGE_WRITE
772 wait_after SYNC_FILE_RANGE_WAIT_AFTER
773
774 So if you do sync_file_range=wait_before,write:8, fio would
775 use SYNC_FILE_RANGE_WAIT_BEFORE | SYNC_FILE_RANGE_WRITE for
776 every 8 writes. Also see the sync_file_range(2) man page.
777 This option is Linux specific.
778
5036fc1e
JA
779overwrite=bool If true, writes to a file will always overwrite existing
780 data. If the file doesn't already exist, it will be
781 created before the write phase begins. If the file exists
782 and is large enough for the specified write phase, nothing
783 will be done.
71bfa161 784
dbd11ead 785end_fsync=bool If true, fsync file contents when a write stage has completed.
71bfa161 786
ebb1415f
JA
787fsync_on_close=bool If true, fio will fsync() a dirty file on close.
788 This differs from end_fsync in that it will happen on every
789 file close, not just at the end of the job.
790
71bfa161
JA
791rwmixread=int How large a percentage of the mix should be reads.
792
793rwmixwrite=int How large a percentage of the mix should be writes. If both
794 rwmixread and rwmixwrite is given and the values do not add
795 up to 100%, the latter of the two will be used to override
c35dd7a6
JA
796 the first. This may interfere with a given rate setting,
797 if fio is asked to limit reads or writes to a certain rate.
798 If that is the case, then the distribution may be skewed.
71bfa161 799
92d42d69
JA
800random_distribution=str:float By default, fio will use a completely uniform
801 random distribution when asked to perform random IO. Sometimes
802 it is useful to skew the distribution in specific ways,
803 ensuring that some parts of the data is more hot than others.
804 fio includes the following distribution models:
805
806 random Uniform random distribution
807 zipf Zipf distribution
808 pareto Pareto distribution
809
810 When using a zipf or pareto distribution, an input value
811 is also needed to define the access pattern. For zipf, this
812 is the zipf theta. For pareto, it's the pareto power. Fio
813 includes a test program, genzipf, that can be used visualize
814 what the given input values will yield in terms of hit rates.
815 If you wanted to use zipf with a theta of 1.2, you would use
816 random_distribution=zipf:1.2 as the option. If a non-uniform
817 model is used, fio will disable use of the random map.
818
211c9b89
JA
819percentage_random=int For a random workload, set how big a percentage should
820 be random. This defaults to 100%, in which case the workload
821 is fully random. It can be set from anywhere from 0 to 100.
822 Setting it to 0 would make the workload fully sequential. Any
823 setting in between will result in a random mix of sequential
d9472271
JA
824 and random IO, at the given percentages. It is possible to
825 set different values for reads, writes, and trim. To do so,
826 simply use a comma separated list. See blocksize.
211c9b89 827
bb8895e0
JA
828norandommap Normally fio will cover every block of the file when doing
829 random IO. If this option is given, fio will just get a
830 new random offset without looking at past io history. This
831 means that some blocks may not be read or written, and that
832 some blocks may be read/written more than once. This option
8347239a
JA
833 is mutually exclusive with verify= if and only if multiple
834 blocksizes (via bsrange=) are used, since fio only tracks
835 complete rewrites of blocks.
bb8895e0 836
0408c206
JA
837softrandommap=bool See norandommap. If fio runs with the random block map
838 enabled and it fails to allocate the map, if this option is
839 set it will continue without a random block map. As coverage
840 will not be as complete as with random maps, this option is
2b386d25
JA
841 disabled by default.
842
e8b1961d
JA
843random_generator=str Fio supports the following engines for generating
844 IO offsets for random IO:
845
846 tausworthe Strong 2^88 cycle random number generator
847 lfsr Linear feedback shift register generator
848
849 Tausworthe is a strong random number generator, but it
850 requires tracking on the side if we want to ensure that
851 blocks are only read or written once. LFSR guarantees
852 that we never generate the same offset twice, and it's
853 also less computationally expensive. It's not a true
854 random generator, however, though for IO purposes it's
855 typically good enough. LFSR only works with single
856 block sizes, not with workloads that use multiple block
857 sizes. If used with such a workload, fio may read or write
858 some blocks multiple times.
43f09da1 859
71bfa161
JA
860nice=int Run the job with the given nice value. See man nice(2).
861
862prio=int Set the io priority value of this job. Linux limits us to
863 a positive value between 0 and 7, with 0 being the highest.
864 See man ionice(1).
865
866prioclass=int Set the io priority class. See man ionice(1).
867
868thinktime=int Stall the job x microseconds after an io has completed before
869 issuing the next. May be used to simulate processing being
48097d5c
JA
870 done by an application. See thinktime_blocks and
871 thinktime_spin.
872
873thinktime_spin=int
874 Only valid if thinktime is set - pretend to spend CPU time
875 doing something with the data received, before falling back
876 to sleeping for the rest of the period specified by
877 thinktime.
9c1f7434 878
4d01ece6 879thinktime_blocks=int
9c1f7434
JA
880 Only valid if thinktime is set - control how many blocks
881 to issue, before waiting 'thinktime' usecs. If not set,
882 defaults to 1 which will make fio wait 'thinktime' usecs
4d01ece6
JA
883 after every block. This effectively makes any queue depth
884 setting redundant, since no more than 1 IO will be queued
885 before we have to complete it and do our thinktime. In
886 other words, this setting effectively caps the queue depth
887 if the latter is larger.
71bfa161 888
581e7141 889rate=int Cap the bandwidth used by this job. The number is in bytes/sec,
b09da8fa 890 the normal suffix rules apply. You can use rate=500k to limit
581e7141
JA
891 reads and writes to 500k each, or you can specify read and
892 writes separately. Using rate=1m,500k would limit reads to
893 1MB/sec and writes to 500KB/sec. Capping only reads or
894 writes can be done with rate=,500k or rate=500k,. The former
895 will only limit writes (to 500KB/sec), the latter will only
896 limit reads.
71bfa161
JA
897
898ratemin=int Tell fio to do whatever it can to maintain at least this
4e991c23 899 bandwidth. Failing to meet this requirement, will cause
581e7141
JA
900 the job to exit. The same format as rate is used for
901 read vs write separation.
4e991c23
JA
902
903rate_iops=int Cap the bandwidth to this number of IOPS. Basically the same
904 as rate, just specified independently of bandwidth. If the
905 job is given a block size range instead of a fixed value,
581e7141 906 the smallest block size is used as the metric. The same format
de8f6de9 907 as rate is used for read vs write separation.
4e991c23
JA
908
909rate_iops_min=int If fio doesn't meet this rate of IO, it will cause
581e7141 910 the job to exit. The same format as rate is used for read vs
de8f6de9 911 write separation.
71bfa161 912
3e260a46
JA
913latency_target=int If set, fio will attempt to find the max performance
914 point that the given workload will run at while maintaining a
915 latency below this target. The values is given in microseconds.
916 See latency_window and latency_percentile
917
918latency_window=int Used with latency_target to specify the sample window
919 that the job is run at varying queue depths to test the
920 performance. The value is given in microseconds.
921
922latency_percentile=float The percentage of IOs that must fall within the
923 criteria specified by latency_target and latency_window. If not
924 set, this defaults to 100.0, meaning that all IOs must be equal
925 or below to the value set by latency_target.
926
15501535
JA
927max_latency=int If set, fio will exit the job if it exceeds this maximum
928 latency. It will exit with an ETIME error.
929
71bfa161 930ratecycle=int Average bandwidth for 'rate' and 'ratemin' over this number
6c219763 931 of milliseconds.
71bfa161
JA
932
933cpumask=int Set the CPU affinity of this job. The parameter given is a
a08bc17f
JA
934 bitmask of allowed CPU's the job may run on. So if you want
935 the allowed CPUs to be 1 and 5, you would pass the decimal
936 value of (1 << 1 | 1 << 5), or 34. See man
7dbb6eba 937 sched_setaffinity(2). This may not work on all supported
b0ea08ce
JA
938 operating systems or kernel versions. This option doesn't
939 work well for a higher CPU count than what you can store in
940 an integer mask, so it can only control cpus 1-32. For
941 boxes with larger CPU counts, use cpus_allowed.
71bfa161 942
d2e268b0
JA
943cpus_allowed=str Controls the same options as cpumask, but it allows a text
944 setting of the permitted CPUs instead. So to use CPUs 1 and
62a7273d
JA
945 5, you would specify cpus_allowed=1,5. This options also
946 allows a range of CPUs. Say you wanted a binding to CPUs
947 1, 5, and 8-15, you would set cpus_allowed=1,5,8-15.
d2e268b0 948
c2acfbac
JA
949cpus_allowed_policy=str Set the policy of how fio distributes the CPUs
950 specified by cpus_allowed or cpumask. Two policies are
951 supported:
952
953 shared All jobs will share the CPU set specified.
954 split Each job will get a unique CPU from the CPU set.
955
956 'shared' is the default behaviour, if the option isn't
ada083cd
JA
957 specified. If split is specified, then fio will will assign
958 one cpu per job. If not enough CPUs are given for the jobs
959 listed, then fio will roundrobin the CPUs in the set.
c2acfbac 960
d0b937ed
YR
961numa_cpu_nodes=str Set this job running on spcified NUMA nodes' CPUs. The
962 arguments allow comma delimited list of cpu numbers,
963 A-B ranges, or 'all'. Note, to enable numa options support,
67bf9823 964 fio must be built on a system with libnuma-dev(el) installed.
d0b937ed
YR
965
966numa_mem_policy=str Set this job's memory policy and corresponding NUMA
967 nodes. Format of the argements:
968 <mode>[:<nodelist>]
969 `mode' is one of the following memory policy:
970 default, prefer, bind, interleave, local
971 For `default' and `local' memory policy, no node is
972 needed to be specified.
973 For `prefer', only one node is allowed.
974 For `bind' and `interleave', it allow comma delimited
975 list of numbers, A-B ranges, or 'all'.
976
e417fd66 977startdelay=time Start this job the specified number of seconds after fio
71bfa161
JA
978 has started. Only useful if the job file contains several
979 jobs, and you want to delay starting some jobs to a certain
980 time.
981
e417fd66 982runtime=time Tell fio to terminate processing after the specified number
71bfa161
JA
983 of seconds. It can be quite hard to determine for how long
984 a specified job will run, so this parameter is handy to
985 cap the total runtime to a given time.
986
cf4464ca 987time_based If set, fio will run for the duration of the runtime
bf9a3edb 988 specified even if the file(s) are completely read or
cf4464ca
JA
989 written. It will simply loop over the same workload
990 as many times as the runtime allows.
991
e417fd66 992ramp_time=time If set, fio will run the specified workload for this amount
721938ae
JA
993 of time before logging any performance numbers. Useful for
994 letting performance settle before logging results, thus
b29ee5b3
JA
995 minimizing the runtime required for stable results. Note
996 that the ramp_time is considered lead in time for a job,
997 thus it will increase the total runtime if a special timeout
998 or runtime is specified.
721938ae 999
71bfa161
JA
1000invalidate=bool Invalidate the buffer/page cache parts for this file prior
1001 to starting io. Defaults to true.
1002
1003sync=bool Use sync io for buffered writes. For the majority of the
1004 io engines, this means using O_SYNC.
1005
d3aad8f2 1006iomem=str
71bfa161
JA
1007mem=str Fio can use various types of memory as the io unit buffer.
1008 The allowed values are:
1009
1010 malloc Use memory from malloc(3) as the buffers.
1011
1012 shm Use shared memory as the buffers. Allocated
1013 through shmget(2).
1014
74b025b0
JA
1015 shmhuge Same as shm, but use huge pages as backing.
1016
313cb206
JA
1017 mmap Use mmap to allocate buffers. May either be
1018 anonymous memory, or can be file backed if
1019 a filename is given after the option. The
1020 format is mem=mmap:/path/to/file.
71bfa161 1021
d0bdaf49
JA
1022 mmaphuge Use a memory mapped huge file as the buffer
1023 backing. Append filename after mmaphuge, ala
1024 mem=mmaphuge:/hugetlbfs/file
1025
71bfa161 1026 The area allocated is a function of the maximum allowed
5394ae5f
JA
1027 bs size for the job, multiplied by the io depth given. Note
1028 that for shmhuge and mmaphuge to work, the system must have
1029 free huge pages allocated. This can normally be checked
1030 and set by reading/writing /proc/sys/vm/nr_hugepages on a
b22989b9 1031 Linux system. Fio assumes a huge page is 4MB in size. So
5394ae5f
JA
1032 to calculate the number of huge pages you need for a given
1033 job file, add up the io depth of all jobs (normally one unless
1034 iodepth= is used) and multiply by the maximum bs set. Then
1035 divide that number by the huge page size. You can see the
1036 size of the huge pages in /proc/meminfo. If no huge pages
1037 are allocated by having a non-zero number in nr_hugepages,
56bb17f2 1038 using mmaphuge or shmhuge will fail. Also see hugepage-size.
5394ae5f
JA
1039
1040 mmaphuge also needs to have hugetlbfs mounted and the file
1041 location should point there. So if it's mounted in /huge,
1042 you would use mem=mmaphuge:/huge/somefile.
71bfa161 1043
d529ee19
JA
1044iomem_align=int This indiciates the memory alignment of the IO memory buffers.
1045 Note that the given alignment is applied to the first IO unit
1046 buffer, if using iodepth the alignment of the following buffers
1047 are given by the bs used. In other words, if using a bs that is
1048 a multiple of the page sized in the system, all buffers will
1049 be aligned to this value. If using a bs that is not page
1050 aligned, the alignment of subsequent IO memory buffers is the
1051 sum of the iomem_align and bs used.
1052
f7fa2653 1053hugepage-size=int
56bb17f2 1054 Defines the size of a huge page. Must at least be equal
b22989b9 1055 to the system setting, see /proc/meminfo. Defaults to 4MB.
c51074e7
JA
1056 Should probably always be a multiple of megabytes, so using
1057 hugepage-size=Xm is the preferred way to set this to avoid
1058 setting a non-pow-2 bad value.
56bb17f2 1059
71bfa161
JA
1060exitall When one job finishes, terminate the rest. The default is
1061 to wait for each job to finish, sometimes that is not the
1062 desired action.
1063
1064bwavgtime=int Average the calculated bandwidth over the given time. Value
6c219763 1065 is specified in milliseconds.
71bfa161 1066
c8eeb9df
JA
1067iopsavgtime=int Average the calculated IOPS over the given time. Value
1068 is specified in milliseconds.
1069
71bfa161
JA
1070create_serialize=bool If true, serialize the file creating for the jobs.
1071 This may be handy to avoid interleaving of data
1072 files, which may greatly depend on the filesystem
1073 used and even the number of processors in the system.
1074
1075create_fsync=bool fsync the data file after creation. This is the
1076 default.
1077
814452bd
JA
1078create_on_open=bool Don't pre-setup the files for IO, just create open()
1079 when it's time to do IO to that file.
1080
25460cf6
JA
1081create_only=bool If true, fio will only run the setup phase of the job.
1082 If files need to be laid out or updated on disk, only
1083 that will be done. The actual job contents are not
1084 executed.
1085
afad68f7 1086pre_read=bool If this is given, files will be pre-read into memory before
34f1c044
JA
1087 starting the given IO operation. This will also clear
1088 the 'invalidate' flag, since it is pointless to pre-read
9c0d2241
JA
1089 and then drop the cache. This will only work for IO engines
1090 that are seekable, since they allow you to read the same data
1091 multiple times. Thus it will not work on eg network or splice
1092 IO.
afad68f7 1093
e545a6ce 1094unlink=bool Unlink the job files when done. Not the default, as repeated
bf9a3edb
JA
1095 runs of that job would then waste time recreating the file
1096 set again and again.
71bfa161
JA
1097
1098loops=int Run the specified number of iterations of this job. Used
1099 to repeat the same workload a given number of times. Defaults
1100 to 1.
1101
62167762
JC
1102verify_only Do not perform specified workload---only verify data still
1103 matches previous invocation of this workload. This option
1104 allows one to check data multiple times at a later date
1105 without overwriting it. This option makes sense only for
1106 workloads that write data, and does not support workloads
1107 with the time_based option set.
1108
68e1f29a 1109do_verify=bool Run the verify phase after a write phase. Only makes sense if
e84c73a8
SL
1110 verify is set. Defaults to 1.
1111
71bfa161
JA
1112verify=str If writing to a file, fio can verify the file contents
1113 after each iteration of the job. The allowed values are:
1114
1115 md5 Use an md5 sum of the data area and store
1116 it in the header of each block.
1117
17dc34df
JA
1118 crc64 Use an experimental crc64 sum of the data
1119 area and store it in the header of each
1120 block.
1121
bac39e0e
JA
1122 crc32c Use a crc32c sum of the data area and store
1123 it in the header of each block.
1124
3845591f 1125 crc32c-intel Use hardware assisted crc32c calcuation
0539d758
JA
1126 provided on SSE4.2 enabled processors. Falls
1127 back to regular software crc32c, if not
1128 supported by the system.
3845591f 1129
71bfa161
JA
1130 crc32 Use a crc32 sum of the data area and store
1131 it in the header of each block.
1132
969f7ed3
JA
1133 crc16 Use a crc16 sum of the data area and store
1134 it in the header of each block.
1135
17dc34df
JA
1136 crc7 Use a crc7 sum of the data area and store
1137 it in the header of each block.
1138
844ea602
JA
1139 xxhash Use xxhash as the checksum function. Generally
1140 the fastest software checksum that fio
1141 supports.
1142
cd14cc10
JA
1143 sha512 Use sha512 as the checksum function.
1144
1145 sha256 Use sha256 as the checksum function.
1146
7c353ceb
JA
1147 sha1 Use optimized sha1 as the checksum function.
1148
7437ee87
SL
1149 meta Write extra information about each io
1150 (timestamp, block number etc.). The block
62167762
JC
1151 number is verified. The io sequence number is
1152 verified for workloads that write data.
1153 See also verify_pattern.
7437ee87 1154
36690c9b
JA
1155 null Only pretend to verify. Useful for testing
1156 internals with ioengine=null, not for much
1157 else.
1158
6c219763 1159 This option can be used for repeated burn-in tests of a
71bfa161 1160 system to make sure that the written data is also
b892dc08
JA
1161 correctly read back. If the data direction given is
1162 a read or random read, fio will assume that it should
1163 verify a previously written file. If the data direction
1164 includes any form of write, the verify will be of the
1165 newly written data.
71bfa161 1166
160b966d
JA
1167verifysort=bool If set, fio will sort written verify blocks when it deems
1168 it faster to read them back in a sorted manner. This is
1169 often the case when overwriting an existing file, since
1170 the blocks are already laid out in the file system. You
1171 can ignore this option unless doing huge amounts of really
1172 fast IO where the red-black tree sorting CPU time becomes
1173 significant.
3f9f4e26 1174
f7fa2653 1175verify_offset=int Swap the verification header with data somewhere else
546a9142
SL
1176 in the block before writing. Its swapped back before
1177 verifying.
1178
f7fa2653 1179verify_interval=int Write the verification header at a finer granularity
3f9f4e26
SL
1180 than the blocksize. It will be written for chunks the
1181 size of header_interval. blocksize should divide this
1182 evenly.
90059d65 1183
0e92f873 1184verify_pattern=str If set, fio will fill the io buffers with this
e28218f3
SL
1185 pattern. Fio defaults to filling with totally random
1186 bytes, but sometimes it's interesting to fill with a known
1187 pattern for io verification purposes. Depending on the
1188 width of the pattern, fio will fill 1/2/3/4 bytes of the
0e92f873
RR
1189 buffer at the time(it can be either a decimal or a hex number).
1190 The verify_pattern if larger than a 32-bit quantity has to
996093bb
JA
1191 be a hex number that starts with either "0x" or "0X". Use
1192 with verify=meta.
e28218f3 1193
68e1f29a 1194verify_fatal=bool Normally fio will keep checking the entire contents
a12a3b4d
JA
1195 before quitting on a block verification failure. If this
1196 option is set, fio will exit the job on the first observed
1197 failure.
e8462bd8 1198
b463e936
JA
1199verify_dump=bool If set, dump the contents of both the original data
1200 block and the data block we read off disk to files. This
1201 allows later analysis to inspect just what kind of data
ef71e317 1202 corruption occurred. Off by default.
b463e936 1203
e8462bd8
JA
1204verify_async=int Fio will normally verify IO inline from the submitting
1205 thread. This option takes an integer describing how many
1206 async offload threads to create for IO verification instead,
1207 causing fio to offload the duty of verifying IO contents
c85c324c
JA
1208 to one or more separate threads. If using this offload
1209 option, even sync IO engines can benefit from using an
1210 iodepth setting higher than 1, as it allows them to have
1211 IO in flight while verifies are running.
e8462bd8
JA
1212
1213verify_async_cpus=str Tell fio to set the given CPU affinity on the
1214 async IO verification threads. See cpus_allowed for the
1215 format used.
6f87418f
JA
1216
1217verify_backlog=int Fio will normally verify the written contents of a
1218 job that utilizes verify once that job has completed. In
1219 other words, everything is written then everything is read
1220 back and verified. You may want to verify continually
1221 instead for a variety of reasons. Fio stores the meta data
1222 associated with an IO block in memory, so for large
1223 verify workloads, quite a bit of memory would be used up
1224 holding this meta data. If this option is enabled, fio
f42195a3
JA
1225 will write only N blocks before verifying these blocks.
1226
6f87418f
JA
1227verify_backlog_batch=int Control how many blocks fio will verify
1228 if verify_backlog is set. If not set, will default to
1229 the value of verify_backlog (meaning the entire queue
f42195a3
JA
1230 is read back and verified). If verify_backlog_batch is
1231 less than verify_backlog then not all blocks will be verified,
1232 if verify_backlog_batch is larger than verify_backlog, some
1233 blocks will be verified more than once.
66c098b8 1234
d392365e 1235stonewall
de8f6de9 1236wait_for_previous Wait for preceding jobs in the job file to exit, before
71bfa161 1237 starting this one. Can be used to insert serialization
b3d62a75
JA
1238 points in the job file. A stone wall also implies starting
1239 a new reporting group.
1240
abcab6af 1241new_group Start a new reporting group. See: group_reporting.
71bfa161
JA
1242
1243numjobs=int Create the specified number of clones of this job. May be
1244 used to setup a larger number of threads/processes doing
abcab6af
AV
1245 the same thing. Each thread is reported separately; to see
1246 statistics for all clones as a whole, use group_reporting in
1247 conjunction with new_group.
1248
1249group_reporting It may sometimes be interesting to display statistics for
04b2f799
JA
1250 groups of jobs as a whole instead of for each individual job.
1251 This is especially true if 'numjobs' is used; looking at
1252 individual thread/process output quickly becomes unwieldy.
1253 To see the final report per-group instead of per-job, use
1254 'group_reporting'. Jobs in a file will be part of the same
1255 reporting group, unless if separated by a stonewall, or by
1256 using 'new_group'.
71bfa161
JA
1257
1258thread fio defaults to forking jobs, however if this option is
1259 given, fio will use pthread_create(3) to create threads
1260 instead.
1261
f7fa2653 1262zonesize=int Divide a file into zones of the specified size. See zoneskip.
71bfa161 1263
f7fa2653 1264zoneskip=int Skip the specified number of bytes when zonesize data has
71bfa161
JA
1265 been read. The two zone options can be used to only do
1266 io on zones of a file.
1267
076efc7c 1268write_iolog=str Write the issued io patterns to the specified file. See
5b42a488
SH
1269 read_iolog. Specify a separate file for each job, otherwise
1270 the iologs will be interspersed and the file may be corrupt.
71bfa161 1271
076efc7c 1272read_iolog=str Open an iolog with the specified file name and replay the
71bfa161 1273 io patterns it contains. This can be used to store a
6df8adaa
JA
1274 workload and replay it sometime later. The iolog given
1275 may also be a blktrace binary file, which allows fio
1276 to replay a workload captured by blktrace. See blktrace
1277 for how to capture such logging data. For blktrace replay,
1278 the file needs to be turned into a blkparse binary data
ea3e51c3 1279 file first (blkparse <device> -o /dev/null -d file_for_fio.bin).
66c098b8 1280
64bbb865 1281replay_no_stall=int When replaying I/O with read_iolog the default behavior
62776229
JA
1282 is to attempt to respect the time stamps within the log and
1283 replay them with the appropriate delay between IOPS. By
1284 setting this variable fio will not respect the timestamps and
1285 attempt to replay them as fast as possible while still
1286 respecting ordering. The result is the same I/O pattern to a
1287 given device, but different timings.
71bfa161 1288
d1c46c04
DN
1289replay_redirect=str While replaying I/O patterns using read_iolog the
1290 default behavior is to replay the IOPS onto the major/minor
1291 device that each IOP was recorded from. This is sometimes
de8f6de9 1292 undesirable because on a different machine those major/minor
d1c46c04
DN
1293 numbers can map to a different device. Changing hardware on
1294 the same system can also result in a different major/minor
1295 mapping. Replay_redirect causes all IOPS to be replayed onto
1296 the single specified device regardless of the device it was
1297 recorded from. i.e. replay_redirect=/dev/sdc would cause all
1298 IO in the blktrace to be replayed onto /dev/sdc. This means
1299 multiple devices will be replayed onto a single, if the trace
1300 contains multiple devices. If you want multiple devices to be
1301 replayed concurrently to multiple redirected devices you must
1302 blkparse your trace into separate traces and replay them with
1303 independent fio invocations. Unfortuantely this also breaks
1304 the strict time ordering between multiple device accesses.
1305
e3cedca7 1306write_bw_log=str If given, write a bandwidth log of the jobs in this job
71bfa161 1307 file. Can be used to store data of the bandwidth of the
e0da9bc2
JA
1308 jobs in their lifetime. The included fio_generate_plots
1309 script uses gnuplot to turn these text files into nice
ddb754db 1310 graphs. See write_lat_log for behaviour of given
8ad3b3dd
JA
1311 filename. For this option, the suffix is _bw.x.log, where
1312 x is the index of the job (1..N, where N is the number of
1313 jobs).
71bfa161 1314
e3cedca7 1315write_lat_log=str Same as write_bw_log, except that this option stores io
02af0988
JA
1316 submission, completion, and total latencies instead. If no
1317 filename is given with this option, the default filename of
1318 "jobname_type.log" is used. Even if the filename is given,
1319 fio will still append the type of log. So if one specifies
e3cedca7
JA
1320
1321 write_lat_log=foo
1322
8ad3b3dd
JA
1323 The actual log names will be foo_slat.x.log, foo_clat.x.log,
1324 and foo_lat.x.log, where x is the index of the job (1..N,
1325 where N is the number of jobs). This helps fio_generate_plot
1326 fine the logs automatically.
71bfa161 1327
b8bc8cba
JA
1328write_iops_log=str Same as write_bw_log, but writes IOPS. If no filename is
1329 given with this option, the default filename of
8ad3b3dd
JA
1330 "jobname_type.x.log" is used,where x is the index of the job
1331 (1..N, where N is the number of jobs). Even if the filename
1332 is given, fio will still append the type of log.
b8bc8cba
JA
1333
1334log_avg_msec=int By default, fio will log an entry in the iops, latency,
1335 or bw log for every IO that completes. When writing to the
1336 disk log, that can quickly grow to a very large size. Setting
1337 this option makes fio average the each log entry over the
1338 specified period of time, reducing the resolution of the log.
1339 Defaults to 0.
1340
ae588852
JA
1341log_offset=int If this is set, the iolog options will include the byte
1342 offset for the IO entry as well as the other data values.
1343
aee2ab67
JA
1344log_compression=int If this is set, fio will compress the IO logs as
1345 it goes, to keep the memory footprint lower. When a log
1346 reaches the specified size, that chunk is removed and
1347 compressed in the background. Given that IO logs are
1348 fairly highly compressible, this yields a nice memory
1349 savings for longer runs. The downside is that the
1350 compression will consume some background CPU cycles, so
1351 it may impact the run. This, however, is also true if
1352 the logging ends up consuming most of the system memory.
1353 So pick your poison. The IO logs are saved normally at the
1354 end of a run, by decompressing the chunks and storing them
1355 in the specified log file. This feature depends on the
1356 availability of zlib.
1357
b26317c9
JA
1358log_store_compressed=bool If set, and log_compression is also set,
1359 fio will store the log files in a compressed format. They
1360 can be decompressed with fio, using the --inflate-log
1361 command line parameter. The files will be stored with a
1362 .fz suffix.
1363
f7fa2653 1364lockmem=int Pin down the specified amount of memory with mlock(2). Can
71bfa161
JA
1365 potentially be used instead of removing memory or booting
1366 with less memory to simulate a smaller amount of memory.
81c6b6cd 1367 The amount specified is per worker.
71bfa161
JA
1368
1369exec_prerun=str Before running this job, issue the command specified
74c8c488
JA
1370 through system(3). Output is redirected in a file called
1371 jobname.prerun.txt.
71bfa161
JA
1372
1373exec_postrun=str After the job completes, issue the command specified
74c8c488
JA
1374 though system(3). Output is redirected in a file called
1375 jobname.postrun.txt.
71bfa161
JA
1376
1377ioscheduler=str Attempt to switch the device hosting the file to the specified
1378 io scheduler before running.
1379
0a839f30
JA
1380disk_util=bool Generate disk utilization statistics, if the platform
1381 supports it. Defaults to on.
1382
02af0988 1383disable_lat=bool Disable measurements of total latency numbers. Useful
9520ebb9
JA
1384 only for cutting back the number of calls to gettimeofday,
1385 as that does impact performance at really high IOPS rates.
1386 Note that to really get rid of a large amount of these
1387 calls, this option must be used with disable_slat and
1388 disable_bw as well.
1389
02af0988
JA
1390disable_clat=bool Disable measurements of completion latency numbers. See
1391 disable_lat.
1392
9520ebb9 1393disable_slat=bool Disable measurements of submission latency numbers. See
02af0988 1394 disable_slat.
9520ebb9
JA
1395
1396disable_bw=bool Disable measurements of throughput/bandwidth numbers. See
02af0988 1397 disable_lat.
9520ebb9 1398
83349190
YH
1399clat_percentiles=bool Enable the reporting of percentiles of
1400 completion latencies.
1401
1402percentile_list=float_list Overwrite the default list of percentiles
1403 for completion latencies. Each number is a floating
1404 number in the range (0,100], and the maximum length of
1405 the list is 20. Use ':' to separate the numbers, and
1406 list the numbers in ascending order. For example,
1407 --percentile_list=99.5:99.9 will cause fio to report
1408 the values of completion latency below which 99.5% and
1409 99.9% of the observed latencies fell, respectively.
1410
23893646
JA
1411clocksource=str Use the given clocksource as the base of timing. The
1412 supported options are:
1413
1414 gettimeofday gettimeofday(2)
1415
1416 clock_gettime clock_gettime(2)
1417
1418 cpu Internal CPU clock source
1419
1420 cpu is the preferred clocksource if it is reliable, as it
1421 is very fast (and fio is heavy on time calls). Fio will
1422 automatically use this clocksource if it's supported and
1423 considered reliable on the system it is running on, unless
1424 another clocksource is specifically set. For x86/x86-64 CPUs,
1425 this means supporting TSC Invariant.
1426
993bf48b
JA
1427gtod_reduce=bool Enable all of the gettimeofday() reducing options
1428 (disable_clat, disable_slat, disable_bw) plus reduce
1429 precision of the timeout somewhat to really shrink
1430 the gettimeofday() call count. With this option enabled,
1431 we only do about 0.4% of the gtod() calls we would have
1432 done if all time keeping was enabled.
1433
be4ecfdf
JA
1434gtod_cpu=int Sometimes it's cheaper to dedicate a single thread of
1435 execution to just getting the current time. Fio (and
1436 databases, for instance) are very intensive on gettimeofday()
1437 calls. With this option, you can set one CPU aside for
1438 doing nothing but logging current time to a shared memory
1439 location. Then the other threads/processes that run IO
1440 workloads need only copy that segment, instead of entering
1441 the kernel with a gettimeofday() call. The CPU set aside
1442 for doing these time calls will be excluded from other
1443 uses. Fio will manually clear it from the CPU mask of other
1444 jobs.
a696fa2a 1445
06842027 1446continue_on_error=str Normally fio will exit the job on the first observed
f2bba182
RR
1447 failure. If this option is set, fio will continue the job when
1448 there is a 'non-fatal error' (EIO or EILSEQ) until the runtime
1449 is exceeded or the I/O size specified is completed. If this
1450 option is used, there are two more stats that are appended,
1451 the total error count and the first error. The error field
1452 given in the stats is the first error that was hit during the
1453 run.
be4ecfdf 1454
06842027
SL
1455 The allowed values are:
1456
1457 none Exit on any IO or verify errors.
1458
1459 read Continue on read errors, exit on all others.
1460
1461 write Continue on write errors, exit on all others.
1462
1463 io Continue on any IO error, exit on all others.
1464
1465 verify Continue on verify errors, exit on all others.
1466
1467 all Continue on all errors.
1468
1469 0 Backward-compatible alias for 'none'.
1470
1471 1 Backward-compatible alias for 'all'.
1472
8b28bd41
DM
1473ignore_error=str Sometimes you want to ignore some errors during test
1474 in that case you can specify error list for each error type.
1475 ignore_error=READ_ERR_LIST,WRITE_ERR_LIST,VERIFY_ERR_LIST
1476 errors for given error type is separated with ':'. Error
1477 may be symbol ('ENOSPC', 'ENOMEM') or integer.
1478 Example:
1479 ignore_error=EAGAIN,ENOSPC:122
66c098b8
BC
1480 This option will ignore EAGAIN from READ, and ENOSPC and
1481 122(EDQUOT) from WRITE.
8b28bd41
DM
1482
1483error_dump=bool If set dump every error even if it is non fatal, true
1484 by default. If disabled only fatal error will be dumped
66c098b8 1485
6adb38a1
JA
1486cgroup=str Add job to this control group. If it doesn't exist, it will
1487 be created. The system must have a mounted cgroup blkio
1488 mount point for this to work. If your system doesn't have it
1489 mounted, you can do so with:
a696fa2a
JA
1490
1491 # mount -t cgroup -o blkio none /cgroup
1492
a696fa2a
JA
1493cgroup_weight=int Set the weight of the cgroup to this value. See
1494 the documentation that comes with the kernel, allowed values
1495 are in the range of 100..1000.
71bfa161 1496
7de87099
VG
1497cgroup_nodelete=bool Normally fio will delete the cgroups it has created after
1498 the job completion. To override this behavior and to leave
1499 cgroups around after the job completion, set cgroup_nodelete=1.
1500 This can be useful if one wants to inspect various cgroup
1501 files after job completion. Default: false
1502
e0b0d892
JA
1503uid=int Instead of running as the invoking user, set the user ID to
1504 this value before the thread/process does any work.
1505
1506gid=int Set group ID, see uid.
1507
9e684a49
DE
1508flow_id=int The ID of the flow. If not specified, it defaults to being a
1509 global flow. See flow.
1510
1511flow=int Weight in token-based flow control. If this value is used, then
1512 there is a 'flow counter' which is used to regulate the
1513 proportion of activity between two or more jobs. fio attempts
1514 to keep this flow counter near zero. The 'flow' parameter
1515 stands for how much should be added or subtracted to the flow
1516 counter on each iteration of the main I/O loop. That is, if
1517 one job has flow=8 and another job has flow=-1, then there
1518 will be a roughly 1:8 ratio in how much one runs vs the other.
1519
1520flow_watermark=int The maximum value that the absolute value of the flow
1521 counter is allowed to reach before the job must wait for a
1522 lower value of the counter.
1523
1524flow_sleep=int The period of time, in microseconds, to wait after the flow
1525 watermark has been exceeded before retrying operations
1526
de890a1e
SL
1527In addition, there are some parameters which are only valid when a specific
1528ioengine is in use. These are used identically to normal parameters, with the
1529caveat that when used on the command line, they must come after the ioengine
1530that defines them is selected.
1531
1532[libaio] userspace_reap Normally, with the libaio engine in use, fio will use
1533 the io_getevents system call to reap newly returned events.
1534 With this flag turned on, the AIO ring will be read directly
1535 from user-space to reap events. The reaping mode is only
1536 enabled when polling for a minimum of 0 events (eg when
1537 iodepth_batch_complete=0).
1538
0353050f
JA
1539[cpu] cpuload=int Attempt to use the specified percentage of CPU cycles.
1540
1541[cpu] cpuchunks=int Split the load into cycles of the given time. In
1542 microseconds.
1543
046395d7
JA
1544[cpu] exit_on_io_done=bool Detect when IO threads are done, then exit.
1545
de890a1e
SL
1546[netsplice] hostname=str
1547[net] hostname=str The host name or IP address to use for TCP or UDP based IO.
1548 If the job is a TCP listener or UDP reader, the hostname is not
b511c9aa
SB
1549 used and must be omitted unless it is a valid UDP multicast
1550 address.
de890a1e
SL
1551
1552[netsplice] port=int
1553[net] port=int The TCP or UDP port to bind to or connect to.
1554
b93b6a2e
SB
1555[netsplice] interface=str
1556[net] interface=str The IP address of the network interface used to send or
1557 receive UDP multicast
1558
d3a623de
SB
1559[netsplice] ttl=int
1560[net] ttl=int Time-to-live value for outgoing UDP multicast packets.
1561 Default: 1
1562
1d360ffb
JA
1563[netsplice] nodelay=bool
1564[net] nodelay=bool Set TCP_NODELAY on TCP connections.
1565
de890a1e
SL
1566[netsplice] protocol=str
1567[netsplice] proto=str
1568[net] protocol=str
1569[net] proto=str The network protocol to use. Accepted values are:
1570
1571 tcp Transmission control protocol
49ccb8c1 1572 tcpv6 Transmission control protocol V6
f5cc3d0e 1573 udp User datagram protocol
49ccb8c1 1574 udpv6 User datagram protocol V6
de890a1e
SL
1575 unix UNIX domain socket
1576
1577 When the protocol is TCP or UDP, the port must also be given,
1578 as well as the hostname if the job is a TCP listener or UDP
1579 reader. For unix sockets, the normal filename option should be
1580 used and the port is invalid.
1581
1582[net] listen For TCP network connections, tell fio to listen for incoming
1583 connections rather than initiating an outgoing connection. The
1584 hostname must be omitted if this option is used.
b511c9aa 1585[net] pingpong Normaly a network writer will just continue writing data, and
7aeb1e94
JA
1586 a network reader will just consume packages. If pingpong=1
1587 is set, a writer will send its normal payload to the reader,
1588 then wait for the reader to send the same payload back. This
1589 allows fio to measure network latencies. The submission
1590 and completion latencies then measure local time spent
1591 sending or receiving, and the completion latency measures
1592 how long it took for the other end to receive and send back.
b511c9aa
SB
1593 For UDP multicast traffic pingpong=1 should only be set for a
1594 single reader when multiple readers are listening to the same
1595 address.
7aeb1e94 1596
d54fce84
DM
1597[e4defrag] donorname=str
1598 File will be used as a block donor(swap extents between files)
1599[e4defrag] inplace=int
66c098b8 1600 Configure donor file blocks allocation strategy
d54fce84
DM
1601 0(default): Preallocate donor's file on init
1602 1 : allocate space immidietly inside defragment event,
1603 and free right after event
1604
de890a1e
SL
1605
1606
71bfa161
JA
16076.0 Interpreting the output
1608---------------------------
1609
1610fio spits out a lot of output. While running, fio will display the
1611status of the jobs created. An example of that would be:
1612
73c8b082 1613Threads: 1: [_r] [24.8% done] [ 13509/ 8334 kb/s] [eta 00h:01m:31s]
71bfa161
JA
1614
1615The characters inside the square brackets denote the current status of
1616each thread. The possible values (in typical life cycle order) are:
1617
1618Idle Run
1619---- ---
1620P Thread setup, but not started.
1621C Thread created.
9c6f6316 1622I Thread initialized, waiting or generating necessary data.
b0f65863 1623 p Thread running pre-reading file(s).
71bfa161
JA
1624 R Running, doing sequential reads.
1625 r Running, doing random reads.
1626 W Running, doing sequential writes.
1627 w Running, doing random writes.
1628 M Running, doing mixed sequential reads/writes.
1629 m Running, doing mixed random reads/writes.
1630 F Running, currently waiting for fsync()
3d434057 1631 f Running, finishing up (writing IO logs, etc)
fc6bd43c 1632 V Running, doing verification of written data.
71bfa161 1633E Thread exited, not reaped by main thread yet.
4f7e57a4
JA
1634_ Thread reaped, or
1635X Thread reaped, exited with an error.
a5e371a6 1636K Thread reaped, exited due to signal.
71bfa161 1637
3e2e48a7
JA
1638Fio will condense the thread string as not to take up more space on the
1639command line as is needed. For instance, if you have 10 readers and 10
1640writers running, the output would look like this:
1641
1642Jobs: 20 (f=20): [R(10),W(10)] [4.0% done] [2103MB/0KB/0KB /s] [538K/0/0 iops] [eta 57m:36s]
1643
1644Fio will still maintain the ordering, though. So the above means that jobs
16451..10 are readers, and 11..20 are writers.
1646
71bfa161 1647The other values are fairly self explanatory - number of threads
c9f60304
JA
1648currently running and doing io, rate of io since last check (read speed
1649listed first, then write speed), and the estimated completion percentage
1650and time for the running group. It's impossible to estimate runtime of
4f7e57a4
JA
1651the following groups (if any). Note that the string is displayed in order,
1652so it's possible to tell which of the jobs are currently doing what. The
1653first character is the first job defined in the job file, and so forth.
71bfa161
JA
1654
1655When fio is done (or interrupted by ctrl-c), it will show the data for
1656each thread, group of threads, and disks in that order. For each data
1657direction, the output looks like:
1658
1659Client1 (g=0): err= 0:
35649e58 1660 write: io= 32MB, bw= 666KB/s, iops=89 , runt= 50320msec
6104ddb6
JA
1661 slat (msec): min= 0, max= 136, avg= 0.03, stdev= 1.92
1662 clat (msec): min= 0, max= 631, avg=48.50, stdev=86.82
b22989b9 1663 bw (KB/s) : min= 0, max= 1196, per=51.00%, avg=664.02, stdev=681.68
e7823a94 1664 cpu : usr=1.49%, sys=0.25%, ctx=7969, majf=0, minf=17
71619dc2 1665 IO depths : 1=0.1%, 2=0.3%, 4=0.5%, 8=99.0%, 16=0.0%, 32=0.0%, >32=0.0%
838bc709
JA
1666 submit : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.0%, 64=0.0%, >=64=0.0%
1667 complete : 0=0.0%, 4=100.0%, 8=0.0%, 16=0.0%, 32=0.0%, 64=0.0%, >=64=0.0%
30061b97 1668 issued r/w: total=0/32768, short=0/0
8abdce66
JA
1669 lat (msec): 2=1.6%, 4=0.0%, 10=3.2%, 20=12.8%, 50=38.4%, 100=24.8%,
1670 lat (msec): 250=15.2%, 500=0.0%, 750=0.0%, 1000=0.0%, >=2048=0.0%
71bfa161
JA
1671
1672The client number is printed, along with the group id and error of that
1673thread. Below is the io statistics, here for writes. In the order listed,
1674they denote:
1675
1676io= Number of megabytes io performed
1677bw= Average bandwidth rate
35649e58 1678iops= Average IOs performed per second
71bfa161 1679runt= The runtime of that thread
72fbda2a 1680 slat= Submission latency (avg being the average, stdev being the
71bfa161
JA
1681 standard deviation). This is the time it took to submit
1682 the io. For sync io, the slat is really the completion
8a35c71e 1683 latency, since queue/complete is one operation there. This
bf9a3edb 1684 value can be in milliseconds or microseconds, fio will choose
8a35c71e 1685 the most appropriate base and print that. In the example
0d237712
LAG
1686 above, milliseconds is the best scale. Note: in --minimal mode
1687 latencies are always expressed in microseconds.
71bfa161
JA
1688 clat= Completion latency. Same names as slat, this denotes the
1689 time from submission to completion of the io pieces. For
1690 sync io, clat will usually be equal (or very close) to 0,
1691 as the time from submit to complete is basically just
1692 CPU time (io has already been done, see slat explanation).
1693 bw= Bandwidth. Same names as the xlat stats, but also includes
1694 an approximate percentage of total aggregate bandwidth
1695 this thread received in this group. This last value is
1696 only really useful if the threads in this group are on the
1697 same disk, since they are then competing for disk access.
1698cpu= CPU usage. User and system time, along with the number
e7823a94
JA
1699 of context switches this thread went through, usage of
1700 system and user time, and finally the number of major
1701 and minor page faults.
71619dc2
JA
1702IO depths= The distribution of io depths over the job life time. The
1703 numbers are divided into powers of 2, so for example the
1704 16= entries includes depths up to that value but higher
1705 than the previous entry. In other words, it covers the
1706 range from 16 to 31.
838bc709
JA
1707IO submit= How many pieces of IO were submitting in a single submit
1708 call. Each entry denotes that amount and below, until
1709 the previous entry - eg, 8=100% mean that we submitted
1710 anywhere in between 5-8 ios per submit call.
1711IO complete= Like the above submit number, but for completions instead.
30061b97
JA
1712IO issued= The number of read/write requests issued, and how many
1713 of them were short.
ec118304
JA
1714IO latencies= The distribution of IO completion latencies. This is the
1715 time from when IO leaves fio and when it gets completed.
1716 The numbers follow the same pattern as the IO depths,
1717 meaning that 2=1.6% means that 1.6% of the IO completed
8abdce66
JA
1718 within 2 msecs, 20=12.8% means that 12.8% of the IO
1719 took more than 10 msecs, but less than (or equal to) 20 msecs.
71bfa161
JA
1720
1721After each client has been listed, the group statistics are printed. They
1722will look like this:
1723
1724Run status group 0 (all jobs):
b22989b9
JA
1725 READ: io=64MB, aggrb=22178, minb=11355, maxb=11814, mint=2840msec, maxt=2955msec
1726 WRITE: io=64MB, aggrb=1302, minb=666, maxb=669, mint=50093msec, maxt=50320msec
71bfa161
JA
1727
1728For each data direction, it prints:
1729
1730io= Number of megabytes io performed.
1731aggrb= Aggregate bandwidth of threads in this group.
1732minb= The minimum average bandwidth a thread saw.
1733maxb= The maximum average bandwidth a thread saw.
1734mint= The smallest runtime of the threads in that group.
1735maxt= The longest runtime of the threads in that group.
1736
1737And finally, the disk statistics are printed. They will look like this:
1738
1739Disk stats (read/write):
1740 sda: ios=16398/16511, merge=30/162, ticks=6853/819634, in_queue=826487, util=100.00%
1741
1742Each value is printed for both reads and writes, with reads first. The
1743numbers denote:
1744
1745ios= Number of ios performed by all groups.
1746merge= Number of merges io the io scheduler.
1747ticks= Number of ticks we kept the disk busy.
1748io_queue= Total time spent in the disk queue.
1749util= The disk utilization. A value of 100% means we kept the disk
1750 busy constantly, 50% would be a disk idling half of the time.
1751
8423bd11
JA
1752It is also possible to get fio to dump the current output while it is
1753running, without terminating the job. To do that, send fio the USR1 signal.
06464907
JA
1754You can also get regularly timed dumps by using the --status-interval
1755parameter, or by creating a file in /tmp named fio-dump-status. If fio
1756sees this file, it will unlink it and dump the current output status.
8423bd11 1757
71bfa161
JA
1758
17597.0 Terse output
1760----------------
1761
1762For scripted usage where you typically want to generate tables or graphs
6af019c9 1763of the results, fio can output the results in a semicolon separated format.
71bfa161
JA
1764The format is one long line of values, such as:
1765
562c2d2f
DN
17662;card0;0;0;7139336;121836;60004;1;10109;27.932460;116.933948;220;126861;3495.446807;1085.368601;226;126864;3523.635629;1089.012448;24063;99944;50.275485%;59818.274627;5540.657370;7155060;122104;60004;1;8338;29.086342;117.839068;388;128077;5032.488518;1234.785715;391;128085;5061.839412;1236.909129;23436;100928;50.287926%;59964.832030;5644.844189;14.595833%;19.394167%;123706;0;7313;0.1%;0.1%;0.1%;0.1%;0.1%;0.1%;100.0%;0.00%;0.00%;0.00%;0.00%;0.00%;0.00%;0.01%;0.02%;0.05%;0.16%;6.04%;40.40%;52.68%;0.64%;0.01%;0.00%;0.01%;0.00%;0.00%;0.00%;0.00%;0.00%
1767A description of this job goes here.
1768
1769The job description (if provided) follows on a second line.
71bfa161 1770
525c2bfa
JA
1771To enable terse output, use the --minimal command line option. The first
1772value is the version of the terse output format. If the output has to
1773be changed for some reason, this number will be incremented by 1 to
1774signify that change.
6820cb3b 1775
71bfa161
JA
1776Split up, the format is as follows:
1777
5e726d0a 1778 terse version, fio version, jobname, groupid, error
71bfa161 1779 READ status:
312b4af2 1780 Total IO (KB), bandwidth (KB/sec), IOPS, runtime (msec)
de196b82
JA
1781 Submission latency: min, max, mean, deviation (usec)
1782 Completion latency: min, max, mean, deviation (usec)
1db92cb6 1783 Completion latency percentiles: 20 fields (see below)
de196b82 1784 Total latency: min, max, mean, deviation (usec)
0d237712 1785 Bw (KB/s): min, max, aggregate percentage of total, mean, deviation
71bfa161 1786 WRITE status:
312b4af2 1787 Total IO (KB), bandwidth (KB/sec), IOPS, runtime (msec)
de196b82
JA
1788 Submission latency: min, max, mean, deviation (usec)
1789 Completion latency: min, max, mean, deviation (usec)
1db92cb6 1790 Completion latency percentiles: 20 fields (see below)
de196b82 1791 Total latency: min, max, mean, deviation (usec)
0d237712 1792 Bw (KB/s): min, max, aggregate percentage of total, mean, deviation
046ee302 1793 CPU usage: user, system, context switches, major faults, minor faults
2270890c 1794 IO depths: <=1, 2, 4, 8, 16, 32, >=64
562c2d2f
DN
1795 IO latencies microseconds: <=2, 4, 10, 20, 50, 100, 250, 500, 750, 1000
1796 IO latencies milliseconds: <=2, 4, 10, 20, 50, 100, 250, 500, 750, 1000, 2000, >=2000
f2f788dd
JA
1797 Disk utilization: Disk name, Read ios, write ios,
1798 Read merges, write merges,
1799 Read ticks, write ticks,
3d7cd9b4 1800 Time spent in queue, disk utilization percentage
de8f6de9 1801 Additional Info (dependent on continue_on_error, default off): total # errors, first error code
66c098b8 1802
de8f6de9 1803 Additional Info (dependent on description being set): Text description
25c8b9d7 1804
1db92cb6
JA
1805Completion latency percentiles can be a grouping of up to 20 sets, so
1806for the terse output fio writes all of them. Each field will look like this:
1807
1808 1.00%=6112
1809
1810which is the Xth percentile, and the usec latency associated with it.
1811
f2f788dd
JA
1812For disk utilization, all disks used by fio are shown. So for each disk
1813there will be a disk utilization section.
1814
25c8b9d7
PD
1815
18168.0 Trace file format
1817---------------------
66c098b8 1818There are two trace file format that you can encounter. The older (v1) format
25c8b9d7
PD
1819is unsupported since version 1.20-rc3 (March 2008). It will still be described
1820below in case that you get an old trace and want to understand it.
1821
1822In any case the trace is a simple text file with a single action per line.
1823
1824
18258.1 Trace file format v1
1826------------------------
1827Each line represents a single io action in the following format:
1828
1829rw, offset, length
1830
1831where rw=0/1 for read/write, and the offset and length entries being in bytes.
1832
1833This format is not supported in Fio versions => 1.20-rc3.
1834
1835
18368.2 Trace file format v2
1837------------------------
1838The second version of the trace file format was added in Fio version 1.17.
1839It allows to access more then one file per trace and has a bigger set of
1840possible file actions.
1841
1842The first line of the trace file has to be:
1843
1844fio version 2 iolog
1845
1846Following this can be lines in two different formats, which are described below.
1847
1848The file management format:
1849
1850filename action
1851
1852The filename is given as an absolute path. The action can be one of these:
1853
1854add Add the given filename to the trace
66c098b8 1855open Open the file with the given filename. The filename has to have
25c8b9d7
PD
1856 been added with the add action before.
1857close Close the file with the given filename. The file has to have been
1858 opened before.
1859
1860
1861The file io action format:
1862
1863filename action offset length
1864
1865The filename is given as an absolute path, and has to have been added and opened
66c098b8 1866before it can be used with this format. The offset and length are given in
25c8b9d7
PD
1867bytes. The action can be one of these:
1868
1869wait Wait for 'offset' microseconds. Everything below 100 is discarded.
1870read Read 'length' bytes beginning from 'offset'
1871write Write 'length' bytes beginning from 'offset'
1872sync fsync() the file
1873datasync fdatasync() the file
1874trim trim the given file from the given 'offset' for 'length' bytes
f2a2ce0e
HL
1875
1876
18779.0 CPU idleness profiling
06464907 1878--------------------------
f2a2ce0e
HL
1879In some cases, we want to understand CPU overhead in a test. For example,
1880we test patches for the specific goodness of whether they reduce CPU usage.
1881fio implements a balloon approach to create a thread per CPU that runs at
1882idle priority, meaning that it only runs when nobody else needs the cpu.
1883By measuring the amount of work completed by the thread, idleness of each
1884CPU can be derived accordingly.
1885
1886An unit work is defined as touching a full page of unsigned characters. Mean
1887and standard deviation of time to complete an unit work is reported in "unit
1888work" section. Options can be chosen to report detailed percpu idleness or
1889overall system idleness by aggregating percpu stats.