-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathread-maxIOPS-sequential.fio
More file actions
34 lines (29 loc) · 938 Bytes
/
read-maxIOPS-sequential.fio
File metadata and controls
34 lines (29 loc) · 938 Bytes
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
#This test does sequential reads and tries to achieve the maximum IOPS possible. Block size and queue depth can be changed on the settings bs="" and iodepth=""
#It will use 4 files and 4 jobs per file which will spawn a total of 16 jobs
#Reporting will be for the entire test instead of each job this is done through group_reporting=1
# rw= tells FIO what operation to perform and if it is sequential or random IO, options can be:
#read for sequential reads, write for sequentail writes, randread for random reads, randwrite for random reads
#randrw for a mix of random read and writes percentage can be controlled through rwmixread and rwmixwrite
[global]
name=read-maxIOPS-sequential
rw=read
group_reporting=1
bs=4K
numjobs=4
time_based=1
runtime=180
iodepth=64
ioengine=libaio
direct=1
[file1]
size=4G
filename=fio.file.1
[file2]
size=4G
filename=fio.file.2
[file3]
size=4G
filename=fio.file.3
[file4]
size=4G
filename=fio.file.4