genfio: Splitting gen_template in 2 parts
[fio.git] / examples / ssd-test.fio
CommitLineData
de141540
JA
1# Do some important numbers on SSD drives, to gauge what kind of
2# performance you might get out of them.
3#
4# Sequential read and write speeds are tested, these are expected to be
5# high. Random reads should also be fast, random writes are where crap
6# drives are usually separated from the good drives.
7#
8# This uses a queue depth of 4. New SATA SSD's will support up to 32
9# in flight commands, so it may also be interesting to increase the queue
10# depth and compare. Note that most real-life usage will not see that
11# large of a queue depth, so 4 is more representative of normal use.
12#
13[global]
14bs=4k
15ioengine=libaio
16iodepth=4
17size=1g
18direct=1
19runtime=60
20directory=/mount-point-of-ssd
21filename=ssd.test.file
22
23[seq-read]
24rw=read
25stonewall
26
27[rand-read]
28rw=randread
29stonewall
30
31[seq-write]
32rw=write
33stonewall
34
35[rand-write]
36rw=randwrite
37stonewall