Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 1 | fio |
| 2 | --- |
| 3 | |
Jens Axboe | 7980911 | 2006-06-09 10:14:54 +0200 | [diff] [blame] | 4 | fio is a tool that will spawn a number of threads or processes doing a |
| 5 | particular type of io action as specified by the user. fio takes a |
| 6 | number of global parameters, each inherited by the thread unless |
| 7 | otherwise parameters given to them overriding that setting is given. |
| 8 | The typical use of fio is to write a job file matching the io load |
| 9 | one wants to simulate. |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 10 | |
Jens Axboe | 2b02b54 | 2005-12-08 15:29:14 +0100 | [diff] [blame] | 11 | |
| 12 | Source |
| 13 | ------ |
| 14 | |
| 15 | fio resides in a git repo, the canonical place is: |
| 16 | |
Jens Axboe | 6b3eccb | 2007-07-18 13:51:19 +0200 | [diff] [blame] | 17 | git://git.kernel.dk/fio.git |
Jens Axboe | 97f049c | 2007-04-23 18:54:55 +0200 | [diff] [blame] | 18 | |
| 19 | The http protocol also works, path is the same. |
Jens Axboe | 2b02b54 | 2005-12-08 15:29:14 +0100 | [diff] [blame] | 20 | |
Jens Axboe | 7980911 | 2006-06-09 10:14:54 +0200 | [diff] [blame] | 21 | Snapshots are frequently generated and they include the git meta data as |
| 22 | well. You can download them here: |
Jens Axboe | 2b02b54 | 2005-12-08 15:29:14 +0100 | [diff] [blame] | 23 | |
| 24 | http://brick.kernel.dk/snaps/ |
| 25 | |
Jens Axboe | a68594c | 2007-03-05 12:37:54 +0100 | [diff] [blame] | 26 | Pascal Bleser <guru@unixtech.be> has fio RPMs in his repository for |
| 27 | SUSE variants, you can find them here: |
Jens Axboe | 1053a10 | 2006-06-06 09:23:13 +0200 | [diff] [blame] | 28 | |
| 29 | http://linux01.gwdg.de/~pbleser/rpm-navigation.php?cat=System/fio |
| 30 | |
Jens Axboe | a68594c | 2007-03-05 12:37:54 +0100 | [diff] [blame] | 31 | Dag Wieërs has RPMs for Red Hat related distros, find them here: |
| 32 | |
| 33 | http://dag.wieers.com/rpm/packages/fio/ |
| 34 | |
Jens Axboe | 244e170 | 2007-07-19 14:21:08 +0200 | [diff] [blame] | 35 | Mandriva has integrated fio into their package repository, so installing |
| 36 | on that distro should be as easy as typing 'urpmi fio'. |
| 37 | |
Jens Axboe | 2b02b54 | 2005-12-08 15:29:14 +0100 | [diff] [blame] | 38 | |
Jens Axboe | 726f6ff | 2007-01-03 21:02:41 +0100 | [diff] [blame] | 39 | Mailing list |
| 40 | ------------ |
| 41 | |
| 42 | There's a mailing list associated with fio. It's meant for general |
| 43 | discussion, bug reporting, questions - basically anything that has to |
| 44 | do with fio. An automated mail detailing recent commits is automatically |
| 45 | sent to the list at most daily. The list address is fio-devel@kernel.dk, |
| 46 | subscribe by sending an empty email to fio-devel+subscribe@kernel.dk. |
| 47 | |
| 48 | |
Jens Axboe | bbfd6b0 | 2006-06-07 19:42:54 +0200 | [diff] [blame] | 49 | Building |
| 50 | -------- |
| 51 | |
| 52 | Just type 'make' and 'make install'. If on FreeBSD, for now you have to |
| 53 | specify the FreeBSD Makefile with -f, eg: |
| 54 | |
| 55 | $ make -f Makefile.Freebsd && make -f Makefile.FreeBSD install |
| 56 | |
Jens Axboe | edffcb9 | 2006-06-08 13:40:18 +0200 | [diff] [blame] | 57 | Likewise with OpenSolaris, use the Makefile.solaris to compile there. |
Jens Axboe | bbfd6b0 | 2006-06-07 19:42:54 +0200 | [diff] [blame] | 58 | This might change in the future if I opt for an autoconf type setup. |
| 59 | |
| 60 | |
Jens Axboe | 972cfd2 | 2006-06-09 11:08:56 +0200 | [diff] [blame] | 61 | Command line |
| 62 | ------------ |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 63 | |
| 64 | $ fio |
Jens Axboe | b469282 | 2006-10-27 13:43:22 +0200 | [diff] [blame] | 65 | --output Write output to file |
Jens Axboe | 03b74b3 | 2007-01-11 11:04:31 +0100 | [diff] [blame] | 66 | --runtime Runtime in seconds |
Jens Axboe | b469282 | 2006-10-27 13:43:22 +0200 | [diff] [blame] | 67 | --latency-log Generate per-job latency logs |
| 68 | --bandwidth-log Generate per-job bandwidth logs |
| 69 | --minimal Minimal (terse) output |
| 70 | --version Print version info and exit |
Jens Axboe | fd28ca4 | 2007-01-09 21:20:13 +0100 | [diff] [blame] | 71 | --help Print this page |
| 72 | --cmdhelp=cmd Print command help, "all" for all of them |
Jens Axboe | cca73aa | 2007-04-04 11:09:19 +0200 | [diff] [blame] | 73 | --showcmd Turn a job file into command line options |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 74 | |
Jens Axboe | b469282 | 2006-10-27 13:43:22 +0200 | [diff] [blame] | 75 | Any parameters following the options will be assumed to be job files, |
| 76 | unless they match a job file parameter. You can add as many as you want, |
| 77 | each job file will be regarded as a separate group and fio will stonewall |
| 78 | its execution. |
Jens Axboe | 972cfd2 | 2006-06-09 11:08:56 +0200 | [diff] [blame] | 79 | |
Jens Axboe | 7980911 | 2006-06-09 10:14:54 +0200 | [diff] [blame] | 80 | |
| 81 | Job file |
| 82 | -------- |
| 83 | |
Jens Axboe | 71bfa16 | 2006-10-25 11:08:19 +0200 | [diff] [blame] | 84 | See the HOWTO file for a more detailed description of parameters and what |
| 85 | they mean. This file contains the terse version. Only a few options can |
| 86 | be controlled with command line parameters, generally it's a lot easier to |
| 87 | just write a simple job file to describe the workload. The job file format |
| 88 | is in the ini style format, as it's easy to read and write for the user. |
Jens Axboe | 7980911 | 2006-06-09 10:14:54 +0200 | [diff] [blame] | 89 | |
| 90 | The job file parameters are: |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 91 | |
Jens Axboe | 0145205 | 2006-06-07 10:29:47 +0200 | [diff] [blame] | 92 | name=x Use 'x' as the identifier for this job. |
Jens Axboe | 61697c3 | 2007-02-05 15:04:46 +0100 | [diff] [blame] | 93 | description=x 'x' is a text description of the job. |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 94 | directory=x Use 'x' as the top level directory for storing files |
Jens Axboe | b50b875 | 2006-10-24 19:05:53 +0200 | [diff] [blame] | 95 | filename=x Force the use of 'x' as the filename for all files |
| 96 | in this thread. If not given, fio will make up |
| 97 | a suitable filename based on the thread and file |
| 98 | number. |
Jens Axboe | 3d60d1e | 2006-05-25 06:31:06 +0200 | [diff] [blame] | 99 | rw=x 'x' may be: read, randread, write, randwrite, |
| 100 | rw (read-write mix), randrw (read-write random mix) |
Jens Axboe | a6ccc7b | 2006-06-02 10:14:15 +0200 | [diff] [blame] | 101 | rwmixcycle=x Base cycle for switching between read and write |
| 102 | in msecs. |
| 103 | rwmixread=x 'x' percentage of rw mix ios will be reads. If |
| 104 | rwmixwrite is also given, the last of the two will |
| 105 | be used if they don't add up to 100%. |
| 106 | rwmixwrite=x 'x' percentage of rw mix ios will be writes. See |
| 107 | rwmixread. |
Jens Axboe | 9ebc27e | 2006-06-12 10:21:50 +0200 | [diff] [blame] | 108 | rand_repeatable=x The sequence of random io blocks can be repeatable |
| 109 | across runs, if 'x' is 1. |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 110 | size=x Set file size to x bytes (x string can include k/m/g) |
| 111 | ioengine=x 'x' may be: aio/libaio/linuxaio for Linux aio, |
| 112 | posixaio for POSIX aio, sync for regular read/write io, |
Jens Axboe | d0ff85d | 2007-02-14 01:19:41 +0100 | [diff] [blame] | 113 | mmap for mmap'ed io, syslet-rw for syslet driven |
| 114 | read/write, splice for using splice/vmsplice, |
Jens Axboe | ba0fbe1 | 2007-03-09 14:34:23 +0100 | [diff] [blame] | 115 | sgio for direct SG_IO io, net for network io, or cpuio |
| 116 | for a cycler burner load. sgio only works on Linux on |
| 117 | SCSI (or SCSI-like devices, such as usb-storage or |
| 118 | sata/libata driven) devices. Fio also has a null io |
| 119 | engine, which is mainly used for testing fio itself. |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 120 | iodepth=x For async io, allow 'x' ios in flight |
| 121 | overwrite=x If 'x', layout a write file first. |
Jens Axboe | 53cdc68 | 2006-10-18 11:50:58 +0200 | [diff] [blame] | 122 | nrfiles=x Spread io load over 'x' number of files per job, |
| 123 | if possible. |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 124 | prio=x Run io at prio X, 0-7 is the kernel allowed range |
| 125 | prioclass=x Run io at prio class X |
| 126 | bs=x Use 'x' for thread blocksize. May include k/m postfix. |
| 127 | bsrange=x-y Mix thread block sizes randomly between x and y. May |
| 128 | also include k/m postfix. |
| 129 | direct=x 1 for direct IO, 0 for buffered IO |
| 130 | thinktime=x "Think" x usec after each io |
| 131 | rate=x Throttle rate to x KiB/sec |
| 132 | ratemin=x Quit if rate of x KiB/sec can't be met |
| 133 | ratecycle=x ratemin averaged over x msecs |
| 134 | cpumask=x Only allow job to run on CPUs defined by mask. |
Jens Axboe | d2e268b | 2007-06-15 10:33:49 +0200 | [diff] [blame] | 135 | cpus_allowed=x Like 'cpumask', but allow text setting of CPU affinity. |
Jens Axboe | 795407c | 2006-10-24 19:42:44 +0200 | [diff] [blame] | 136 | fsync=x If writing with buffered IO, fsync after every |
| 137 | 'x' blocks have been written. |
| 138 | end_fsync=x If 'x', run fsync() after end-of-job. |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 139 | startdelay=x Start this thread x seconds after startup |
Jens Axboe | 03b74b3 | 2007-01-11 11:04:31 +0100 | [diff] [blame] | 140 | runtime=x Terminate x seconds after startup. Can include a |
Jens Axboe | 906c8d7 | 2006-06-13 09:37:56 +0200 | [diff] [blame] | 141 | normal time suffix if not given in seconds, such as |
| 142 | 'm' for minutes, 'h' for hours, and 'd' for days. |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 143 | offset=x Start io at offset x (x string can include k/m/g) |
| 144 | invalidate=x Invalidate page cache for file prior to doing io |
Jens Axboe | 795407c | 2006-10-24 19:42:44 +0200 | [diff] [blame] | 145 | sync=x Use sync writes if x and writing buffered IO. |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 146 | mem=x If x == malloc, use malloc for buffers. If x == shm, |
Jens Axboe | 795407c | 2006-10-24 19:42:44 +0200 | [diff] [blame] | 147 | use shared memory for buffers. If x == mmap, use |
| 148 | anonymous mmap. |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 149 | exitall When one thread quits, terminate the others |
| 150 | bwavgtime=x Average bandwidth stats over an x msec window. |
| 151 | create_serialize=x If 'x', serialize file creation. |
| 152 | create_fsync=x If 'x', run fsync() after file creation. |
Jens Axboe | f6cbb26 | 2006-10-18 14:16:42 +0200 | [diff] [blame] | 153 | unlink If set, unlink files when done. |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 154 | loops=x Run the job 'x' number of times. |
| 155 | verify=x If 'x' == md5, use md5 for verifies. If 'x' == crc32, |
| 156 | use crc32 for verifies. md5 is 'safer', but crc32 is |
| 157 | a lot faster. Only makes sense for writing to a file. |
| 158 | stonewall Wait for preceeding jobs to end before running. |
| 159 | numjobs=x Create 'x' similar entries for this job |
| 160 | thread Use pthreads instead of forked jobs |
Jens Axboe | 20dc95c | 2005-12-09 10:29:35 +0100 | [diff] [blame] | 161 | zonesize=x |
| 162 | zoneskip=y Zone options must be paired. If given, the job |
| 163 | will skip y bytes for every x read/written. This |
| 164 | can be used to gauge hard drive speed over the entire |
| 165 | platter, without reading everything. Both x/y can |
| 166 | include k/m/g suffix. |
Jens Axboe | aea47d4 | 2006-05-26 19:27:29 +0200 | [diff] [blame] | 167 | iolog=x Open and read io pattern from file 'x'. The file must |
| 168 | contain one io action per line in the following format: |
| 169 | rw, offset, length |
| 170 | where with rw=0/1 for read/write, and the offset |
| 171 | and length entries being in bytes. |
Jens Axboe | 843a741 | 2006-06-01 21:14:21 -0700 | [diff] [blame] | 172 | write_iolog=x Write an iolog to file 'x' in the same format as iolog. |
| 173 | The iolog options are exclusive, if both given the |
| 174 | read iolog will be performed. |
Jens Axboe | ec94ec5 | 2006-10-20 10:59:19 +0200 | [diff] [blame] | 175 | write_bw_log Write a bandwidth log. |
| 176 | write_lat_log Write a latency log. |
Jens Axboe | c04f7ec | 2006-05-31 10:13:16 +0200 | [diff] [blame] | 177 | lockmem=x Lock down x amount of memory on the machine, to |
| 178 | simulate a machine with less memory available. x can |
| 179 | include k/m/g suffix. |
Jens Axboe | b6f4d88 | 2006-06-02 10:32:51 +0200 | [diff] [blame] | 180 | nice=x Run job at given nice value. |
Jens Axboe | 4e0ba8a | 2006-06-06 09:36:28 +0200 | [diff] [blame] | 181 | exec_prerun=x Run 'x' before job io is begun. |
| 182 | exec_postrun=x Run 'x' after job io has finished. |
Jens Axboe | da86774 | 2006-06-06 10:39:10 -0700 | [diff] [blame] | 183 | ioscheduler=x Use ioscheduler 'x' for this job. |
Jens Axboe | b990b5c | 2006-09-14 09:48:22 +0200 | [diff] [blame] | 184 | cpuload=x For a CPU io thread, percentage of CPU time to attempt |
| 185 | to burn. |
Jens Axboe | ba0fbe1 | 2007-03-09 14:34:23 +0100 | [diff] [blame] | 186 | cpuchunks=x Split burn cycles into pieces of x usecs. |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 187 | |
Jens Axboe | 7980911 | 2006-06-09 10:14:54 +0200 | [diff] [blame] | 188 | |
Jens Axboe | 7980911 | 2006-06-09 10:14:54 +0200 | [diff] [blame] | 189 | Author |
| 190 | ------ |
| 191 | |
Jens Axboe | aae22ca | 2006-09-05 10:46:22 +0200 | [diff] [blame] | 192 | Fio was written by Jens Axboe <axboe@kernel.dk> to enable flexible testing |
Jens Axboe | 7980911 | 2006-06-09 10:14:54 +0200 | [diff] [blame] | 193 | of the Linux IO subsystem and schedulers. He got tired of writing |
| 194 | specific test applications to simulate a given workload, and found that |
| 195 | the existing io benchmark/test tools out there weren't flexible enough |
| 196 | to do what he wanted. |
| 197 | |
Jens Axboe | aae22ca | 2006-09-05 10:46:22 +0200 | [diff] [blame] | 198 | Jens Axboe <axboe@kernel.dk> 20060905 |
Jens Axboe | 7980911 | 2006-06-09 10:14:54 +0200 | [diff] [blame] | 199 | |