mirror of
https://github.com/kastenhq/kubestr.git
synced 2024-12-14 11:57:56 +00:00
parent
6f6eabf272
commit
0fb6507133
2 changed files with 38 additions and 0 deletions
1
index.html
Normal file
1
index.html
Normal file
|
@ -0,0 +1 @@
|
|||
Hello world
|
|
@ -2,6 +2,7 @@ package fio
|
|||
|
||||
var fioJobs = map[string]string{
|
||||
DefaultFIOJob: testJob1,
|
||||
"randrw": randReadWrite,
|
||||
}
|
||||
|
||||
var testJob1 = `[global]
|
||||
|
@ -28,4 +29,40 @@ readwrite=randwrite
|
|||
time_based
|
||||
ramp_time=2s
|
||||
runtime=15s
|
||||
[job3]
|
||||
name=read_bw
|
||||
bs=128K
|
||||
iodepth=64
|
||||
size=2G
|
||||
readwrite=randread
|
||||
time_based
|
||||
ramp_time=2s
|
||||
runtime=15s
|
||||
[job4]
|
||||
name=write_bw
|
||||
bs=128k
|
||||
iodepth=64
|
||||
size=2G
|
||||
readwrite=randwrite
|
||||
time_based
|
||||
ramp_time=2s
|
||||
runtime=15s
|
||||
`
|
||||
|
||||
var randReadWrite = `[global]
|
||||
randrepeat=0
|
||||
verify=0
|
||||
ioengine=libaio
|
||||
direct=1
|
||||
gtod_reduce=1
|
||||
[job1]
|
||||
name=rand_readwrite
|
||||
bs=4K
|
||||
iodepth=64
|
||||
size=4G
|
||||
readwrite=randrw
|
||||
rwmixread=75
|
||||
time_based
|
||||
ramp_time=2s
|
||||
runtime=15s
|
||||
`
|
||||
|
|
Loading…
Reference in a new issue