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

dd if=/dev/zero of=test bs=16M count=1024 oflag=direct 2>/dev/null

#perf record -a -F max -o /root/perf.data --		\
fio --group_reporting					\
    --runtime=60					\
    --size=16G						\
    --name=dio-randwrite				\
    --ioengine=libaio					\
    --direct=1						\
    --iodepth=64					\
    --rw=randwrite					\
    --blocksize=4k					\
    --overwrite=1					\
    --filename=test