Fio 1.22-rc3
[fio.git] / README
CommitLineData
ebac4655
JA
1fio
2---
3
79809113
JA
4fio is a tool that will spawn a number of threads or processes doing a
5particular type of io action as specified by the user. fio takes a
6number of global parameters, each inherited by the thread unless
7otherwise parameters given to them overriding that setting is given.
8The typical use of fio is to write a job file matching the io load
9one wants to simulate.
ebac4655 10
2b02b546
JA
11
12Source
13------
14
15fio resides in a git repo, the canonical place is:
16
6b3eccb1 17git://git.kernel.dk/fio.git
97f049c9
JA
18
19The http protocol also works, path is the same.
2b02b546 20
79809113
JA
21Snapshots are frequently generated and they include the git meta data as
22well. You can download them here:
2b02b546
JA
23
24http://brick.kernel.dk/snaps/
25
a68594cb
JA
26Pascal Bleser <guru@unixtech.be> has fio RPMs in his repository for
27SUSE variants, you can find them here:
1053a106
JA
28
29http://linux01.gwdg.de/~pbleser/rpm-navigation.php?cat=System/fio
30
a68594cb
JA
31Dag Wieƫrs has RPMs for Red Hat related distros, find them here:
32
33http://dag.wieers.com/rpm/packages/fio/
34
244e170e
JA
35Mandriva has integrated fio into their package repository, so installing
36on that distro should be as easy as typing 'urpmi fio'.
37
2b02b546 38
726f6ff0
JA
39Mailing list
40------------
41
42There's a mailing list associated with fio. It's meant for general
2e8552b0
JA
43discussion, bug reporting, questions, and development - basically anything
44that has to do with fio. An automated mail detailing recent commits is
45automatically sent to the list at most daily. The list address is
46fio@vger.kernel.org, subscribe by sending an email to
47majordomo@vger.kernel.org with
48
49subscribe fio
50
51in the body of the email. There is no archive for the new list yet,
52archives for the old list can be found here:
53
54http://maillist.kernel.dk/fio-devel/
726f6ff0
JA
55
56
bbfd6b00
JA
57Building
58--------
59
60Just type 'make' and 'make install'. If on FreeBSD, for now you have to
5f421004 61specify the FreeBSD Makefile with -f and use gmake (not make), eg:
bbfd6b00 62
5f421004 63$ gmake -f Makefile.Freebsd && gmake -f Makefile.FreeBSD install
bbfd6b00 64
edffcb96 65Likewise with OpenSolaris, use the Makefile.solaris to compile there.
5f421004
JA
66The OpenSolaris make should work fine. This might change in the
67future if I opt for an autoconf type setup.
bbfd6b00 68
6de43c1b
JA
69If your compile fails with an error like this:
70
71 CC gettime.o
72In file included from fio.h:23,
73 from gettime.c:8:
74os/os.h:15:20: error: libaio.h: No such file or directory
75In file included from gettime.c:8:
76fio.h:119: error: field 'iocb' has incomplete type
77make: *** [gettime.o] Error 1
78
79Check that you have the libaio development package installed. On RPM
80based distros, it's typically called libaio-devel.
81
bbfd6b00 82
972cfd25
JA
83Command line
84------------
ebac4655
JA
85
86$ fio
ee56ad50 87 --debug Enable some debugging options (see below)
b4692828 88 --output Write output to file
062c6022 89 --timeout Runtime in seconds
b4692828
JA
90 --latency-log Generate per-job latency logs
91 --bandwidth-log Generate per-job bandwidth logs
92 --minimal Minimal (terse) output
93 --version Print version info and exit
fd28ca49
JA
94 --help Print this page
95 --cmdhelp=cmd Print command help, "all" for all of them
cca73aa7 96 --showcmd Turn a job file into command line options
062c6022 97 --readonly Turn on safety read-only checks, preventing writes
e592a06b
AC
98 --eta=when When ETA estimate should be printed
99 May be "always", "never" or "auto"
01f06b63 100 --section=name Only run specified section in job file
2b386d25 101 --alloc-size=kb Set smalloc pool to this size in kb (def 1024)
e592a06b 102
b4692828
JA
103
104Any parameters following the options will be assumed to be job files,
105unless they match a job file parameter. You can add as many as you want,
106each job file will be regarded as a separate group and fio will stonewall
107its execution.
972cfd25 108
724e4435
JA
109The --readonly switch is an extra safety guard to prevent accidentically
110turning on a write setting when that is not desired. Fio will only write
111if rw=write/randwrite/rw/randrw is given, but this extra safety net can
112be used as an extra precaution. It will also enable a write check in the
113io engine core to prevent an accidental write due to a fio bug.
114
ee56ad50
JA
115The debug switch allows adding options that trigger certain logging
116options in fio. Currently the options are:
117
118 process Dump info related to processes
119 file Dump info related to file actions
120 io Dump info related to IO queuing
121 mem Dump info related to memory allocations
bd6f78b2
JA
122 blktrace Dump info related to blktrace setup
123 verify Dump info related to IO verification
124 all Enable all debug options
811a0d06 125 random Dump info related to random offset generation
a3d741fa 126 parse Dump info related to option matching and parsing
cd991b9e 127 diskutil Dump info related to disk utilization updates
5e1d306e 128 job:x Dump info only related to job number x
bd6f78b2 129 ? or help Show available debug options.
ee56ad50
JA
130
131You can specify as many as you want, eg --debug=file,mem will enable
bd6f78b2 132file and memory debugging.
ee56ad50 133
01f06b63
JA
134The section switch is meant to make it easier to ship a bigger job file
135instead of several smaller ones. Say you define a job file with light,
136moderate, and heavy parts. Then you can ask fio to run the given part
137only by giving it a --section=heavy command line option. The section
138option only applies to job sections, the reserved 'global' section is
139always parsed and taken into account.
140
2b386d25
JA
141Fio has an internal allocator for shared memory called smalloc. It
142allocates shared structures from this pool. The pool defaults to 1024k
143in size, and can grow to 32 pools. If running large jobs with randommap
144enabled it can run out of memory, in which case the --alloc-size switch
145is handy for starting with a larger pool size.
146
79809113
JA
147
148Job file
149--------
150
71bfa161 151See the HOWTO file for a more detailed description of parameters and what
4661f3d0
JA
152they mean. This file contains the terse version. You can describe big and
153complex setups with the command line, but generally it's a lot easier to
71bfa161 154just write a simple job file to describe the workload. The job file format
4661f3d0 155is in the ini style format, as that is easy to read and write for the user.
79809113
JA
156
157The job file parameters are:
ebac4655 158
01452055 159 name=x Use 'x' as the identifier for this job.
61697c37 160 description=x 'x' is a text description of the job.
ebac4655 161 directory=x Use 'x' as the top level directory for storing files
b50b8755
JA
162 filename=x Force the use of 'x' as the filename for all files
163 in this thread. If not given, fio will make up
164 a suitable filename based on the thread and file
165 number.
3d60d1ed
JA
166 rw=x 'x' may be: read, randread, write, randwrite,
167 rw (read-write mix), randrw (read-write random mix)
a6ccc7be
JA
168 rwmixcycle=x Base cycle for switching between read and write
169 in msecs.
170 rwmixread=x 'x' percentage of rw mix ios will be reads. If
171 rwmixwrite is also given, the last of the two will
172 be used if they don't add up to 100%.
173 rwmixwrite=x 'x' percentage of rw mix ios will be writes. See
174 rwmixread.
9ebc27e1
JA
175 rand_repeatable=x The sequence of random io blocks can be repeatable
176 across runs, if 'x' is 1.
ebac4655
JA
177 size=x Set file size to x bytes (x string can include k/m/g)
178 ioengine=x 'x' may be: aio/libaio/linuxaio for Linux aio,
78e7b3e7
JA
179 posixaio for POSIX aio, solarisaio for Solaris
180 native async IO, sync for regular read/write io,
1d2af02a
JA
181 psync for regular pread/pwrite io, vsync for regular
182 readv/writev (with queuing emulation) mmap for mmap'ed
183 io, syslet-rw for syslet driven read/write, splice for
d0c70934
GP
184 using splice/vmsplice, sg for direct SG_IO io, net
185 for network io, or cpuio for a cycler burner load. sg
1d2af02a
JA
186 only works on Linux on SCSI (or SCSI-like devices, such
187 as usb-storage or sata/libata driven) devices. Fio also
188 has a null io engine, which is mainly used for testing
189 fio itself.
190
ebac4655
JA
191 iodepth=x For async io, allow 'x' ios in flight
192 overwrite=x If 'x', layout a write file first.
53cdc686
JA
193 nrfiles=x Spread io load over 'x' number of files per job,
194 if possible.
ebac4655
JA
195 prio=x Run io at prio X, 0-7 is the kernel allowed range
196 prioclass=x Run io at prio class X
197 bs=x Use 'x' for thread blocksize. May include k/m postfix.
198 bsrange=x-y Mix thread block sizes randomly between x and y. May
199 also include k/m postfix.
200 direct=x 1 for direct IO, 0 for buffered IO
201 thinktime=x "Think" x usec after each io
202 rate=x Throttle rate to x KiB/sec
203 ratemin=x Quit if rate of x KiB/sec can't be met
204 ratecycle=x ratemin averaged over x msecs
205 cpumask=x Only allow job to run on CPUs defined by mask.
d2e268b0 206 cpus_allowed=x Like 'cpumask', but allow text setting of CPU affinity.
795407ca
JA
207 fsync=x If writing with buffered IO, fsync after every
208 'x' blocks have been written.
209 end_fsync=x If 'x', run fsync() after end-of-job.
ebac4655 210 startdelay=x Start this thread x seconds after startup
03b74b3e 211 runtime=x Terminate x seconds after startup. Can include a
906c8d75
JA
212 normal time suffix if not given in seconds, such as
213 'm' for minutes, 'h' for hours, and 'd' for days.
ebac4655
JA
214 offset=x Start io at offset x (x string can include k/m/g)
215 invalidate=x Invalidate page cache for file prior to doing io
795407ca 216 sync=x Use sync writes if x and writing buffered IO.
ebac4655 217 mem=x If x == malloc, use malloc for buffers. If x == shm,
795407ca
JA
218 use shared memory for buffers. If x == mmap, use
219 anonymous mmap.
ebac4655
JA
220 exitall When one thread quits, terminate the others
221 bwavgtime=x Average bandwidth stats over an x msec window.
222 create_serialize=x If 'x', serialize file creation.
223 create_fsync=x If 'x', run fsync() after file creation.
f6cbb269 224 unlink If set, unlink files when done.
ebac4655
JA
225 loops=x Run the job 'x' number of times.
226 verify=x If 'x' == md5, use md5 for verifies. If 'x' == crc32,
227 use crc32 for verifies. md5 is 'safer', but crc32 is
228 a lot faster. Only makes sense for writing to a file.
bac39e0e 229 For other types of checksumming, see HOWTO.
ebac4655
JA
230 stonewall Wait for preceeding jobs to end before running.
231 numjobs=x Create 'x' similar entries for this job
232 thread Use pthreads instead of forked jobs
20dc95c4
JA
233 zonesize=x
234 zoneskip=y Zone options must be paired. If given, the job
235 will skip y bytes for every x read/written. This
236 can be used to gauge hard drive speed over the entire
237 platter, without reading everything. Both x/y can
238 include k/m/g suffix.
aea47d44
JA
239 iolog=x Open and read io pattern from file 'x'. The file must
240 contain one io action per line in the following format:
241 rw, offset, length
242 where with rw=0/1 for read/write, and the offset
243 and length entries being in bytes.
843a7413
JA
244 write_iolog=x Write an iolog to file 'x' in the same format as iolog.
245 The iolog options are exclusive, if both given the
246 read iolog will be performed.
ec94ec56
JA
247 write_bw_log Write a bandwidth log.
248 write_lat_log Write a latency log.
c04f7ec3
JA
249 lockmem=x Lock down x amount of memory on the machine, to
250 simulate a machine with less memory available. x can
251 include k/m/g suffix.
b6f4d880 252 nice=x Run job at given nice value.
4e0ba8af
JA
253 exec_prerun=x Run 'x' before job io is begun.
254 exec_postrun=x Run 'x' after job io has finished.
da86774e 255 ioscheduler=x Use ioscheduler 'x' for this job.
b990b5c0
JA
256 cpuload=x For a CPU io thread, percentage of CPU time to attempt
257 to burn.
ba0fbe10 258 cpuchunks=x Split burn cycles into pieces of x usecs.
ebac4655 259
79809113 260
79809113
JA
261Author
262------
263
aae22ca7 264Fio was written by Jens Axboe <axboe@kernel.dk> to enable flexible testing
79809113
JA
265of the Linux IO subsystem and schedulers. He got tired of writing
266specific test applications to simulate a given workload, and found that
267the existing io benchmark/test tools out there weren't flexible enough
268to do what he wanted.
269
aae22ca7 270Jens Axboe <axboe@kernel.dk> 20060905
79809113 271