summaryrefslogtreecommitdiff
path: root/benches/dio-randwrite
blob: 4eaf7a218fb55895b746b30ef36307125ff75ab8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

fio --group_reporting					\
    --runtime=60					\
    --size=16G						\
    --name=dio-randwrite				\
    --ioengine=libaio					\
    --direct=1						\
    --iodepth=64					\
    --rw=randwrite					\
    --blocksize=4k					\
    --cpus_allowed=0					\
    --overwrite=1