mirror of
https://github.com/kastenhq/kubestr.git
synced 2024-12-14 11:57:56 +00:00
31 lines
369 B
Go
31 lines
369 B
Go
package fio
|
|
|
|
var fioJobs = map[string]string{
|
|
DefaultFIOJob: testJob1,
|
|
}
|
|
|
|
var testJob1 = `[global]
|
|
randrepeat=0
|
|
verify=0
|
|
ioengine=libaio
|
|
direct=1
|
|
gtod_reduce=1
|
|
[job1]
|
|
name=read_iops
|
|
bs=4K
|
|
iodepth=64
|
|
size=2G
|
|
readwrite=randread
|
|
time_based
|
|
ramp_time=2s
|
|
runtime=15s
|
|
[job2]
|
|
name=write_iops
|
|
bs=4K
|
|
iodepth=64
|
|
size=2G
|
|
readwrite=randwrite
|
|
time_based
|
|
ramp_time=2s
|
|
runtime=15s
|
|
`
|