docs: move rate_cycle description
[fio.git] / examples / uring-cmd-fdp.fio
CommitLineData
a7e8aae0
KB
1# io_uring_cmd I/O engine for nvme-ns generic character device with FDP enabled
2# This assumes the namespace is already configured with FDP support and has at
3# least 8 available reclaim units.
4#
5# Each job targets different ranges of LBAs with different placement
6# identifiers, and has different write intensity.
7
8[global]
9filename=/dev/ng0n1
10ioengine=io_uring_cmd
11cmd_type=nvme
12iodepth=32
13bs=4K
14fdp=1
15time_based=1
16runtime=1000
17
18[write-heavy]
19rw=randrw
20rwmixwrite=90
21fdp_pli=0,1,2,3
22offset=0%
23size=30%
24
25[write-mid]
26rw=randrw
27rwmixwrite=30
28fdp_pli=4,5
29offset=30%
30size=30%
31
32[write-light]
33rw=randrw
34rwmixwrite=10
35fdp_pli=6
36offset=60%
37size=30%