-
Notifications
You must be signed in to change notification settings - Fork 0
/
HOWTO
3518 lines (2494 loc) · 125 KB
/
HOWTO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
How fio works
-------------
The first step in getting fio to simulate a desired I/O workload, is writing a
job file describing that specific setup. A job file may contain any number of
threads and/or files -- the typical contents of the job file is a *global*
section defining shared parameters, and one or more job sections describing the
jobs involved. When run, fio parses this file and sets everything up as
described. If we break down a job from top to bottom, it contains the following
basic parameters:
`I/O type`_
Defines the I/O pattern issued to the file(s). We may only be reading
sequentially from this file(s), or we may be writing randomly. Or even
mixing reads and writes, sequentially or randomly.
Should we be doing buffered I/O, or direct/raw I/O?
`Block size`_
In how large chunks are we issuing I/O? This may be a single value,
or it may describe a range of block sizes.
`I/O size`_
How much data are we going to be reading/writing.
`I/O engine`_
How do we issue I/O? We could be memory mapping the file, we could be
using regular read/write, we could be using splice, async I/O, or even
SG (SCSI generic sg).
`I/O depth`_
If the I/O engine is async, how large a queuing depth do we want to
maintain?
`Target file/device`_
How many files are we spreading the workload over.
`Threads, processes and job synchronization`_
How many threads or processes should we spread this workload over.
The above are the basic parameters defined for a workload, in addition there's a
multitude of parameters that modify other aspects of how this job behaves.
Command line options
--------------------
.. option:: --debug=type
Enable verbose tracing of various fio actions. May be ``all`` for all types
or individual types separated by a comma (e.g. ``--debug=file,mem`` will
enable file and memory debugging). Currently, additional logging is
available for:
*process*
Dump info related to processes.
*file*
Dump info related to file actions.
*io*
Dump info related to I/O queuing.
*mem*
Dump info related to memory allocations.
*blktrace*
Dump info related to blktrace setup.
*verify*
Dump info related to I/O verification.
*all*
Enable all debug options.
*random*
Dump info related to random offset generation.
*parse*
Dump info related to option matching and parsing.
*diskutil*
Dump info related to disk utilization updates.
*job:x*
Dump info only related to job number x.
*mutex*
Dump info only related to mutex up/down ops.
*profile*
Dump info related to profile extensions.
*time*
Dump info related to internal time keeping.
*net*
Dump info related to networking connections.
*rate*
Dump info related to I/O rate switching.
*compress*
Dump info related to log compress/decompress.
*?* or *help*
Show available debug options.
.. option:: --parse-only
Parse options only, don\'t start any I/O.
.. option:: --output=filename
Write output to file `filename`.
.. option:: --bandwidth-log
Generate aggregate bandwidth logs.
.. option:: --minimal
Print statistics in a terse, semicolon-delimited format.
.. option:: --append-terse
Print statistics in selected mode AND terse, semicolon-delimited format.
**deprecated**, use :option:`--output-format` instead to select multiple
formats.
.. option:: --output-format=type
Set the reporting format to `normal`, `terse`, `json`, or `json+`. Multiple
formats can be selected, separate by a comma. `terse` is a CSV based
format. `json+` is like `json`, except it adds a full dump of the latency
buckets.
.. option:: --terse-version=type
Set terse version output format (default 3, or 2 or 4).
.. option:: --version
Print version info and exit.
.. option:: --help
Print this page.
.. option:: --cpuclock-test
Perform test and validation of internal CPU clock.
.. option:: --crctest=test
Test the speed of the builtin checksumming functions. If no argument is
given, all of them are tested. Or a comma separated list can be passed, in
which case the given ones are tested.
.. option:: --cmdhelp=command
Print help information for `command`. May be ``all`` for all commands.
.. option:: --enghelp=[ioengine[,command]]
List all commands defined by :option:`ioengine`, or print help for `command`
defined by :option:`ioengine`. If no :option:`ioengine` is given, list all
available ioengines.
.. option:: --showcmd=jobfile
Turn a job file into command line options.
.. option:: --readonly
Turn on safety read-only checks, preventing writes. The ``--readonly``
option is an extra safety guard to prevent users from accidentally starting
a write workload when that is not desired. Fio will only write if
`rw=write/randwrite/rw/randrw` is given. This extra safety net can be used
as an extra precaution as ``--readonly`` will also enable a write check in
the I/O engine core to prevent writes due to unknown user space bug(s).
.. option:: --eta=when
When real-time ETA estimate should be printed. May be `always`, `never` or
`auto`.
.. option:: --eta-newline=time
Force a new line for every `time` period passed.
.. option:: --status-interval=time
Force full status dump every `time` period passed.
.. option:: --section=name
Only run specified section in job file. Multiple sections can be specified.
The ``--section`` option allows one to combine related jobs into one file.
E.g. one job file could define light, moderate, and heavy sections. Tell
fio to run only the "heavy" section by giving ``--section=heavy``
command line option. One can also specify the "write" operations in one
section and "verify" operation in another section. The ``--section`` option
only applies to job sections. The reserved *global* section is always
parsed and used.
.. option:: --alloc-size=kb
Set the internal smalloc pool to this size in kb (def 1024). The
``--alloc-size`` switch allows one to use a larger pool size for smalloc.
If running large jobs with randommap enabled, fio can run out of memory.
Smalloc is an internal allocator for shared structures from a fixed size
memory pool. The pool size defaults to 16M and can grow to 8 pools.
NOTE: While running :file:`.fio_smalloc.*` backing store files are visible
in :file:`/tmp`.
.. option:: --warnings-fatal
All fio parser warnings are fatal, causing fio to exit with an
error.
.. option:: --max-jobs=nr
Maximum number of threads/processes to support.
.. option:: --server=args
Start a backend server, with `args` specifying what to listen to.
See `Client/Server`_ section.
.. option:: --daemonize=pidfile
Background a fio server, writing the pid to the given `pidfile` file.
.. option:: --client=hostname
Instead of running the jobs locally, send and run them on the given host or
set of hosts. See `Client/Server`_ section.
.. option:: --remote-config=file
Tell fio server to load this local file.
.. option:: --idle-prof=option
Report cpu idleness on a system or percpu basis
``--idle-prof=system,percpu`` or
run unit work calibration only ``--idle-prof=calibrate``.
.. option:: --inflate-log=log
Inflate and output compressed log.
.. option:: --trigger-file=file
Execute trigger cmd when file exists.
.. option:: --trigger-timeout=t
Execute trigger at this time.
.. option:: --trigger=cmd
Set this command as local trigger.
.. option:: --trigger-remote=cmd
Set this command as remote trigger.
.. option:: --aux-path=path
Use this path for fio state generated files.
Any parameters following the options will be assumed to be job files, unless
they match a job file parameter. Multiple job files can be listed and each job
file will be regarded as a separate group. Fio will :option:`stonewall`
execution between each group.
Job file format
---------------
As previously described, fio accepts one or more job files describing what it is
supposed to do. The job file format is the classic ini file, where the names
enclosed in [] brackets define the job name. You are free to use any ASCII name
you want, except *global* which has special meaning. Following the job name is
a sequence of zero or more parameters, one per line, that define the behavior of
the job. If the first character in a line is a ';' or a '#', the entire line is
discarded as a comment.
A *global* section sets defaults for the jobs described in that file. A job may
override a *global* section parameter, and a job file may even have several
*global* sections if so desired. A job is only affected by a *global* section
residing above it.
The :option:`--cmdhelp` option also lists all options. If used with an `option`
argument, :option:`--cmdhelp` will detail the given `option`.
See the `examples/` directory for inspiration on how to write job files. Note
the copyright and license requirements currently apply to `examples/` files.
So let's look at a really simple job file that defines two processes, each
randomly reading from a 128MiB file:
.. code-block:: ini
; -- start job file --
[global]
rw=randread
size=128m
[job1]
[job2]
; -- end job file --
As you can see, the job file sections themselves are empty as all the described
parameters are shared. As no :option:`filename` option is given, fio makes up a
`filename` for each of the jobs as it sees fit. On the command line, this job
would look as follows::
$ fio --name=global --rw=randread --size=128m --name=job1 --name=job2
Let's look at an example that has a number of processes writing randomly to
files:
.. code-block:: ini
; -- start job file --
[random-writers]
ioengine=libaio
iodepth=4
rw=randwrite
bs=32k
direct=0
size=64m
numjobs=4
; -- end job file --
Here we have no *global* section, as we only have one job defined anyway. We
want to use async I/O here, with a depth of 4 for each file. We also increased
the buffer size used to 32KiB and define numjobs to 4 to fork 4 identical
jobs. The result is 4 processes each randomly writing to their own 64MiB
file. Instead of using the above job file, you could have given the parameters
on the command line. For this case, you would specify::
$ fio --name=random-writers --ioengine=libaio --iodepth=4 --rw=randwrite --bs=32k --direct=0 --size=64m --numjobs=4
When fio is utilized as a basis of any reasonably large test suite, it might be
desirable to share a set of standardized settings across multiple job files.
Instead of copy/pasting such settings, any section may pull in an external
:file:`filename.fio` file with *include filename* directive, as in the following
example::
; -- start job file including.fio --
[global]
filename=/tmp/test
filesize=1m
include glob-include.fio
[test]
rw=randread
bs=4k
time_based=1
runtime=10
include test-include.fio
; -- end job file including.fio --
.. code-block:: ini
; -- start job file glob-include.fio --
thread=1
group_reporting=1
; -- end job file glob-include.fio --
.. code-block:: ini
; -- start job file test-include.fio --
ioengine=libaio
iodepth=4
; -- end job file test-include.fio --
Settings pulled into a section apply to that section only (except *global*
section). Include directives may be nested in that any included file may contain
further include directive(s). Include files may not contain [] sections.
Environment variables
~~~~~~~~~~~~~~~~~~~~~
Fio also supports environment variable expansion in job files. Any sub-string of
the form ``${VARNAME}`` as part of an option value (in other words, on the right
of the '='), will be expanded to the value of the environment variable called
`VARNAME`. If no such environment variable is defined, or `VARNAME` is the
empty string, the empty string will be substituted.
As an example, let's look at a sample fio invocation and job file::
$ SIZE=64m NUMJOBS=4 fio jobfile.fio
.. code-block:: ini
; -- start job file --
[random-writers]
rw=randwrite
size=${SIZE}
numjobs=${NUMJOBS}
; -- end job file --
This will expand to the following equivalent job file at runtime:
.. code-block:: ini
; -- start job file --
[random-writers]
rw=randwrite
size=64m
numjobs=4
; -- end job file --
Fio ships with a few example job files, you can also look there for inspiration.
Reserved keywords
~~~~~~~~~~~~~~~~~
Additionally, fio has a set of reserved keywords that will be replaced
internally with the appropriate value. Those keywords are:
**$pagesize**
The architecture page size of the running system.
**$mb_memory**
Megabytes of total memory in the system.
**$ncpus**
Number of online available CPUs.
These can be used on the command line or in the job file, and will be
automatically substituted with the current system values when the job is
run. Simple math is also supported on these keywords, so you can perform actions
like::
size=8*$mb_memory
and get that properly expanded to 8 times the size of memory in the machine.
Job file parameters
-------------------
This section describes in details each parameter associated with a job. Some
parameters take an option of a given type, such as an integer or a
string. Anywhere a numeric value is required, an arithmetic expression may be
used, provided it is surrounded by parentheses. Supported operators are:
- addition (+)
- subtraction (-)
- multiplication (*)
- division (/)
- modulus (%)
- exponentiation (^)
For time values in expressions, units are microseconds by default. This is
different than for time values not in expressions (not enclosed in
parentheses). The following types are used:
Parameter types
~~~~~~~~~~~~~~~
**str**
String. This is a sequence of alpha characters.
**time**
Integer with possible time suffix. In seconds unless otherwise
specified, use e.g. 10m for 10 minutes. Accepts s/m/h for seconds, minutes,
and hours, and accepts 'ms' (or 'msec') for milliseconds, and 'us' (or
'usec') for microseconds.
.. _int:
**int**
Integer. A whole number value, which may contain an integer prefix
and an integer suffix:
[*integer prefix*] **number** [*integer suffix*]
The optional *integer prefix* specifies the number's base. The default
is decimal. *0x* specifies hexadecimal.
The optional *integer suffix* specifies the number's units, and includes an
optional unit prefix and an optional unit. For quantities of data, the
default unit is bytes. For quantities of time, the default unit is seconds.
With :option:`kb_base` =1000, fio follows international standards for unit
prefixes. To specify power-of-10 decimal values defined in the
International System of Units (SI):
* *Ki* -- means kilo (K) or 1000
* *Mi* -- means mega (M) or 1000**2
* *Gi* -- means giga (G) or 1000**3
* *Ti* -- means tera (T) or 1000**4
* *Pi* -- means peta (P) or 1000**5
To specify power-of-2 binary values defined in IEC 80000-13:
* *k* -- means kibi (Ki) or 1024
* *M* -- means mebi (Mi) or 1024**2
* *G* -- means gibi (Gi) or 1024**3
* *T* -- means tebi (Ti) or 1024**4
* *P* -- means pebi (Pi) or 1024**5
With :option:`kb_base` =1024 (the default), the unit prefixes are opposite
from those specified in the SI and IEC 80000-13 standards to provide
compatibility with old scripts. For example, 4k means 4096.
For quantities of data, an optional unit of 'B' may be included
(e.g., 'kB' is the same as 'k').
The *integer suffix* is not case sensitive (e.g., m/mi mean mebi/mega,
not milli). 'b' and 'B' both mean byte, not bit.
Examples with :option:`kb_base` =1000:
* *4 KiB*: 4096, 4096b, 4096B, 4ki, 4kib, 4kiB, 4Ki, 4KiB
* *1 MiB*: 1048576, 1mi, 1024ki
* *1 MB*: 1000000, 1m, 1000k
* *1 TiB*: 1099511627776, 1ti, 1024gi, 1048576mi
* *1 TB*: 1000000000, 1t, 1000m, 1000000k
Examples with :option:`kb_base` =1024 (default):
* *4 KiB*: 4096, 4096b, 4096B, 4k, 4kb, 4kB, 4K, 4KB
* *1 MiB*: 1048576, 1m, 1024k
* *1 MB*: 1000000, 1mi, 1000ki
* *1 TiB*: 1099511627776, 1t, 1024g, 1048576m
* *1 TB*: 1000000000, 1ti, 1000mi, 1000000ki
To specify times (units are not case sensitive):
* *D* -- means days
* *H* -- means hours
* *M* -- mean minutes
* *s* -- or sec means seconds (default)
* *ms* -- or *msec* means milliseconds
* *us* -- or *usec* means microseconds
If the option accepts an upper and lower range, use a colon ':' or
minus '-' to separate such values. See :ref:`irange <irange>`.
If the lower value specified happens to be larger than the upper value,
two values are swapped.
.. _bool:
**bool**
Boolean. Usually parsed as an integer, however only defined for
true and false (1 and 0).
.. _irange:
**irange**
Integer range with suffix. Allows value range to be given, such as
1024-4096. A colon may also be used as the separator, e.g. 1k:4k. If the
option allows two sets of ranges, they can be specified with a ',' or '/'
delimiter: 1k-4k/8k-32k. Also see :ref:`int <int>`.
**float_list**
A list of floating point numbers, separated by a ':' character.
Units
~~~~~
.. option:: kb_base=int
Select the interpretation of unit prefixes in input parameters.
**1000**
Inputs comply with IEC 80000-13 and the International
System of Units (SI). Use:
- power-of-2 values with IEC prefixes (e.g., KiB)
- power-of-10 values with SI prefixes (e.g., kB)
**1024**
Compatibility mode (default). To avoid breaking old scripts:
- power-of-2 values with SI prefixes
- power-of-10 values with IEC prefixes
See :option:`bs` for more details on input parameters.
Outputs always use correct prefixes. Most outputs include both
side-by-side, like::
bw=2383.3kB/s (2327.4KiB/s)
If only one value is reported, then kb_base selects the one to use:
**1000** -- SI prefixes
**1024** -- IEC prefixes
.. option:: unit_base=int
Base unit for reporting. Allowed values are:
**0**
Use auto-detection (default).
**8**
Byte based.
**1**
Bit based.
With the above in mind, here follows the complete list of fio job parameters.
Job description
~~~~~~~~~~~~~~~
.. option:: name=str
ASCII name of the job. This may be used to override the name printed by fio
for this job. Otherwise the job name is used. On the command line this
parameter has the special purpose of also signaling the start of a new job.
.. option:: description=str
Text description of the job. Doesn't do anything except dump this text
description when this job is run. It's not parsed.
.. option:: loops=int
Run the specified number of iterations of this job. Used to repeat the same
workload a given number of times. Defaults to 1.
.. option:: numjobs=int
Create the specified number of clones of this job. Each clone of job
is spawned as an independent thread or process. May be used to setup a
larger number of threads/processes doing the same thing. Each thread is
reported separately; to see statistics for all clones as a whole, use
:option:`group_reporting` in conjunction with :option:`new_group`.
See :option:`--max-jobs`.
Time related parameters
~~~~~~~~~~~~~~~~~~~~~~~
.. option:: runtime=time
Tell fio to terminate processing after the specified period of time. It
can be quite hard to determine for how long a specified job will run, so
this parameter is handy to cap the total runtime to a given time. When
the unit is omitted, the value is given in seconds.
.. option:: time_based
If set, fio will run for the duration of the :option:`runtime` specified
even if the file(s) are completely read or written. It will simply loop over
the same workload as many times as the :option:`runtime` allows.
.. option:: startdelay=irange(time)
Delay start of job for the specified number of seconds. Supports all time
suffixes to allow specification of hours, minutes, seconds and milliseconds
-- seconds are the default if a unit is omitted. Can be given as a range
which causes each thread to choose randomly out of the range.
.. option:: ramp_time=time
If set, fio will run the specified workload for this amount of time before
logging any performance numbers. Useful for letting performance settle
before logging results, thus minimizing the runtime required for stable
results. Note that the ``ramp_time`` is considered lead in time for a job,
thus it will increase the total runtime if a special timeout or
:option:`runtime` is specified. When the unit is omitted, the value is
given in seconds.
.. option:: clocksource=str
Use the given clocksource as the base of timing. The supported options are:
**gettimeofday**
:manpage:`gettimeofday(2)`
**clock_gettime**
:manpage:`clock_gettime(2)`
**cpu**
Internal CPU clock source
cpu is the preferred clocksource if it is reliable, as it is very fast (and
fio is heavy on time calls). Fio will automatically use this clocksource if
it's supported and considered reliable on the system it is running on,
unless another clocksource is specifically set. For x86/x86-64 CPUs, this
means supporting TSC Invariant.
.. option:: gtod_reduce=bool
Enable all of the :manpage:`gettimeofday(2)` reducing options
(:option:`disable_clat`, :option:`disable_slat`, :option:`disable_bw_measurement`) plus
reduce precision of the timeout somewhat to really shrink the
:manpage:`gettimeofday(2)` call count. With this option enabled, we only do
about 0.4% of the :manpage:`gettimeofday(2)` calls we would have done if all
time keeping was enabled.
.. option:: gtod_cpu=int
Sometimes it's cheaper to dedicate a single thread of execution to just
getting the current time. Fio (and databases, for instance) are very
intensive on :manpage:`gettimeofday(2)` calls. With this option, you can set
one CPU aside for doing nothing but logging current time to a shared memory
location. Then the other threads/processes that run I/O workloads need only
copy that segment, instead of entering the kernel with a
:manpage:`gettimeofday(2)` call. The CPU set aside for doing these time
calls will be excluded from other uses. Fio will manually clear it from the
CPU mask of other jobs.
Target file/device
~~~~~~~~~~~~~~~~~~
.. option:: directory=str
Prefix filenames with this directory. Used to place files in a different
location than :file:`./`. You can specify a number of directories by
separating the names with a ':' character. These directories will be
assigned equally distributed to job clones creates with :option:`numjobs` as
long as they are using generated filenames. If specific `filename(s)` are
set fio will use the first listed directory, and thereby matching the
`filename` semantic which generates a file each clone if not specified, but
let all clones use the same if set.
See the :option:`filename` option for escaping certain characters.
.. option:: filename=str
Fio normally makes up a `filename` based on the job name, thread number, and
file number. If you want to share files between threads in a job or several
jobs with fixed file paths, specify a `filename` for each of them to override
the default. If the ioengine is file based, you can specify a number of files
by separating the names with a ':' colon. So if you wanted a job to open
:file:`/dev/sda` and :file:`/dev/sdb` as the two working files, you would use
``filename=/dev/sda:/dev/sdb``. This also means that whenever this option is
specified, :option:`nrfiles` is ignored. The size of regular files specified
by this option will be :option:`size` divided by number of files unless
explicit size is specified by :option:`filesize`.
On Windows, disk devices are accessed as :file:`\\\\.\\PhysicalDrive0` for
the first device, :file:`\\\\.\\PhysicalDrive1` for the second etc.
Note: Windows and FreeBSD prevent write access to areas
of the disk containing in-use data (e.g. filesystems). If the wanted
`filename` does need to include a colon, then escape that with a ``\``
character. For instance, if the `filename` is :file:`/dev/dsk/foo@3,0:c`,
then you would use ``filename="/dev/dsk/foo@3,0\:c"``. The
:file:`-` is a reserved name, meaning stdin or stdout. Which of the two
depends on the read/write direction set.
.. option:: filename_format=str
If sharing multiple files between jobs, it is usually necessary to have fio
generate the exact names that you want. By default, fio will name a file
based on the default file format specification of
:file:`jobname.jobnumber.filenumber`. With this option, that can be
customized. Fio will recognize and replace the following keywords in this
string:
**$jobname**
The name of the worker thread or process.
**$jobnum**
The incremental number of the worker thread or process.
**$filenum**
The incremental number of the file for that worker thread or
process.
To have dependent jobs share a set of files, this option can be set to have
fio generate filenames that are shared between the two. For instance, if
:file:`testfiles.$filenum` is specified, file number 4 for any job will be
named :file:`testfiles.4`. The default of :file:`$jobname.$jobnum.$filenum`
will be used if no other format specifier is given.
.. option:: unique_filename=bool
To avoid collisions between networked clients, fio defaults to prefixing any
generated filenames (with a directory specified) with the source of the
client connecting. To disable this behavior, set this option to 0.
.. option:: opendir=str
Recursively open any files below directory `str`.
.. option:: lockfile=str
Fio defaults to not locking any files before it does I/O to them. If a file
or file descriptor is shared, fio can serialize I/O to that file to make the
end result consistent. This is usual for emulating real workloads that share
files. The lock modes are:
**none**
No locking. The default.
**exclusive**
Only one thread or process may do I/O at a time, excluding all
others.
**readwrite**
Read-write locking on the file. Many readers may
access the file at the same time, but writes get exclusive access.
.. option:: nrfiles=int
Number of files to use for this job. Defaults to 1. The size of files
will be :option:`size` divided by this unless explicit size is specified by
:option:`filesize`. Files are created for each thread separately, and each
file will have a file number within its name by default, as explained in
:option:`filename` section.
.. option:: openfiles=int
Number of files to keep open at the same time. Defaults to the same as
:option:`nrfiles`, can be set smaller to limit the number simultaneous
opens.
.. option:: file_service_type=str
Defines how fio decides which file from a job to service next. The following
types are defined:
**random**
Choose a file at random.
**roundrobin**
Round robin over opened files. This is the default.
**sequential**
Finish one file before moving on to the next. Multiple files can
still be open depending on 'openfiles'.
**zipf**
Use a *Zipf* distribution to decide what file to access.
**pareto**
Use a *Pareto* distribution to decide what file to access.
**gauss**
Use a *Gaussian* (normal) distribution to decide what file to
access.
For *random*, *roundrobin*, and *sequential*, a postfix can be appended to
tell fio how many I/Os to issue before switching to a new file. For example,
specifying ``file_service_type=random:8`` would cause fio to issue
8 I/Os before selecting a new file at random. For the non-uniform
distributions, a floating point postfix can be given to influence how the
distribution is skewed. See :option:`random_distribution` for a description
of how that would work.
.. option:: ioscheduler=str
Attempt to switch the device hosting the file to the specified I/O scheduler
before running.
.. option:: create_serialize=bool
If true, serialize the file creation for the jobs. This may be handy to
avoid interleaving of data files, which may greatly depend on the filesystem
used and even the number of processors in the system.
.. option:: create_fsync=bool
fsync the data file after creation. This is the default.
.. option:: create_on_open=bool
Don't pre-setup the files for I/O, just create open() when it's time to do
I/O to that file.
.. option:: create_only=bool
If true, fio will only run the setup phase of the job. If files need to be
laid out or updated on disk, only that will be done. The actual job contents
are not executed.
.. option:: allow_file_create=bool
If true, fio is permitted to create files as part of its workload. This is
the default behavior. If this option is false, then fio will error out if
the files it needs to use don't already exist. Default: true.
.. option:: allow_mounted_write=bool
If this isn't set, fio will abort jobs that are destructive (e.g. that write)
to what appears to be a mounted device or partition. This should help catch
creating inadvertently destructive tests, not realizing that the test will
destroy data on the mounted file system. Note that some platforms don't allow
writing against a mounted device regardless of this option. Default: false.
.. option:: pre_read=bool
If this is given, files will be pre-read into memory before starting the
given I/O operation. This will also clear the :option:`invalidate` flag,
since it is pointless to pre-read and then drop the cache. This will only
work for I/O engines that are seek-able, since they allow you to read the
same data multiple times. Thus it will not work on e.g. network or splice I/O.
.. option:: unlink=bool
Unlink the job files when done. Not the default, as repeated runs of that
job would then waste time recreating the file set again and again.
.. option:: unlink_each_loop=bool
Unlink job files after each iteration or loop.
.. option:: zonesize=int
Divide a file into zones of the specified size. See :option:`zoneskip`.
.. option:: zonerange=int
Give size of an I/O zone. See :option:`zoneskip`.
.. option:: zoneskip=int
Skip the specified number of bytes when :option:`zonesize` data has been
read. The two zone options can be used to only do I/O on zones of a file.
I/O type
~~~~~~~~
.. option:: direct=bool
If value is true, use non-buffered I/O. This is usually O_DIRECT. Note that
ZFS on Solaris doesn't support direct I/O. On Windows the synchronous
ioengines don't support direct I/O. Default: false.
.. option:: atomic=bool
If value is true, attempt to use atomic direct I/O. Atomic writes are
guaranteed to be stable once acknowledged by the operating system. Only
Linux supports O_ATOMIC right now.
.. option:: buffered=bool
If value is true, use buffered I/O. This is the opposite of the
:option:`direct` option. Defaults to true.
.. option:: readwrite=str, rw=str
Type of I/O pattern. Accepted values are:
**read**
Sequential reads.
**write**
Sequential writes.
**trim**
Sequential trims (Linux block devices only).
**randwrite**
Random writes.
**randread**
Random reads.
**randtrim**
Random trims (Linux block devices only).
**rw,readwrite**
Sequential mixed reads and writes.
**randrw**
Random mixed reads and writes.
**trimwrite**
Sequential trim+write sequences. Blocks will be trimmed first,
then the same blocks will be written to.
Fio defaults to read if the option is not specified. For the mixed I/O
types, the default is to split them 50/50. For certain types of I/O the
result may still be skewed a bit, since the speed may be different. It is
possible to specify a number of I/O's to do before getting a new offset,
this is done by appending a ``:<nr>`` to the end of the string given. For a
random read, it would look like ``rw=randread:8`` for passing in an offset
modifier with a value of 8. If the suffix is used with a sequential I/O
pattern, then the value specified will be added to the generated offset for
each I/O. For instance, using ``rw=write:4k`` will skip 4k for every
write. It turns sequential I/O into sequential I/O with holes. See the
:option:`rw_sequencer` option.
.. option:: rw_sequencer=str
If an offset modifier is given by appending a number to the ``rw=<str>``
line, then this option controls how that number modifies the I/O offset
being generated. Accepted values are:
**sequential**
Generate sequential offset.
**identical**
Generate the same offset.
``sequential`` is only useful for random I/O, where fio would normally
generate a new random offset for every I/O. If you append e.g. 8 to randread,
you would get a new random offset for every 8 I/O's. The result would be a
seek for only every 8 I/O's, instead of for every I/O. Use ``rw=randread:8``
to specify that. As sequential I/O is already sequential, setting
``sequential`` for that would not result in any differences. ``identical``
behaves in a similar fashion, except it sends the same offset 8 number of
times before generating a new offset.