-
Notifications
You must be signed in to change notification settings - Fork 151
/
Copy pathrun_bench.sh
147 lines (120 loc) · 3.85 KB
/
run_bench.sh
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
#!/bin/bash
set -o errexit
set -o nounset
set -o pipefail
: ${BUCKET:="oss-bucket-ossfs-bench"}
: ${GOOFYS_BUCKET:="$BUCKET"}
: ${FAST:="false"}
: ${CACHE:="false"}
: ${ENDPOINT:="http://oss-cn-shenzhen-internal.aliyuncs.com/"}
: ${OSS_ACCESS_KEY_ID:=""}
: ${OSS_SECRET_ACCESS_KEY:=""}
: ${PROG:="ossfs"}
if [ $# = 1 ]; then
t=$1
else
t=
fi
dir=$(dirname $0)
rm -rf bench-mnt
mkdir -p bench-mnt
OSSFS_CACHE="-ouse_cache=/tmp/cache"
GOOFYS_CACHE="--cache /tmp/cache -o allow_other"
if [ "$CACHE" == "false" ]; then
OSSFS_CACHE=""
GOOFYS_CACHE=""
fi
OSSFS_ENDPOINT="-ourl=$ENDPOINT"
GOOFYS_ENDPOINT="--endpoint $ENDPOINT --subdomain"
#credential
if test "${OSS_ACCESS_KEY_ID}" != ""; then
echo "${OSS_ACCESS_KEY_ID}:${OSS_ACCESS_KEY_SECRET}" > /etc/passwd-ossfs
chmod 0400 /etc/passwd-ossfs
echo "${OSS_ACCESS_KEY_ID}:${OSS_ACCESS_KEY_SECRET}" > /etc/passwd-s3fs
chmod 0400 /etc/passwd-s3fs
AWS_ACCESS_KEY_ID="${OSS_ACCESS_KEY_ID}"
AWS_SECRET_ACCESS_KEY="${OSS_ACCESS_KEY_SECRET}"
export AWS_ACCESS_KEY_ID
export AWS_SECRET_ACCESS_KEY
fi
export BUCKET
export ENDPOINT
S3FS="s3fs -f -ostat_cache_expire=1 ${OSSFS_CACHE} ${OSSFS_ENDPOINT} $BUCKET bench-mnt"
OSSFS="ossfs -f -ostat_cache_expire=1 ${OSSFS_CACHE} ${OSSFS_ENDPOINT} $BUCKET bench-mnt"
GOOFYS="goofys -f --stat-cache-ttl 1s --type-cache-ttl 1s ${GOOFYS_CACHE} ${GOOFYS_ENDPOINT} ${GOOFYS_BUCKET} bench-mnt"
iter=10
if [ "$FAST" != "false" ]; then
iter=1
fi
function cleanup {
$GOOFYS >/dev/null &
PID=$!
sleep 5
for f in $dir/bench.goofys $dir/bench.s3fs $dir/bench.ossfs $dir/bench.ossfs+readdir-optimize $dir/bench.data $dir/bench.png; do
if [ -e $f ]; then
cp $f bench-mnt/
fi
done
kill $PID
fusermount -u bench-mnt || true
sleep 1
rmdir bench-mnt
}
trap cleanup EXIT
for fs in s3fs ossfs ossfs+readdir-optimize goofys; do
if [ "$fs" == "-" ]; then
continue
fi
if mountpoint -q bench-mnt; then
echo "bench-mnt is still mounted"
exit 1
fi
case $fs in
s3fs)
FS=$S3FS
CREATE_FS=$FS
;;
goofys)
FS=$GOOFYS
CREATE_FS=$FS
;;
ossfs)
FS=$OSSFS
CREATE_FS=$FS
;;
ossfs+readdir-optimize)
FS="${OSSFS} -oreaddir_optimize"
CREATE_FS=$FS
;;
esac
if [ -e $dir/bench.$fs ]; then
rm $dir/bench.$fs
fi
if [ "$t" = "" ]; then
for tt in create create_parallel io; do
$dir/bench.sh "$FS" bench-mnt $tt |& tee -a $dir/bench.$fs
$dir/bench.sh "$FS" bench-mnt cleanup |& tee -a $dir/bench.$fs
done
$dir/bench.sh "$CREATE_FS" bench-mnt ls_create
for i in $(seq 1 $iter); do
$dir/bench.sh "$FS" bench-mnt ls_ls |& tee -a $dir/bench.$fs
done
$dir/bench.sh "$FS" bench-mnt ls_rm
$dir/bench.sh "$CREATE_FS" bench-mnt find_create |& tee -a $dir/bench.$fs
$dir/bench.sh "$FS" bench-mnt find_find |& tee -a $dir/bench.$fs
$dir/bench.sh "$FS" bench-mnt cleanup |& tee -a $dir/bench.$fs
else
if [ "$t" = "find" ]; then
$dir/bench.sh "$CREATE_FS" bench-mnt find_create |& tee -a $dir/bench.$fs
$dir/bench.sh "$FS" bench-mnt find_find |& tee -a $dir/bench.$fs
$dir/bench.sh "$FS" bench-mnt cleanup |& tee -a $dir/bench.$fs
elif [ "$t" = "cleanup" ]; then
$dir/bench.sh "$FS" bench-mnt cleanup |& tee -a $dir/bench.$fs
else
$dir/bench.sh "$FS" bench-mnt $t |& tee $dir/bench.$fs
fi
fi
done
$dir/bench_format.py <(paste $dir/bench.ossfs $dir/bench.s3fs $dir/bench.goofys $dir/bench.ossfs+readdir-optimize) > $dir/bench.data
gnuplot -c $dir/bench_graph_all.gnuplot $dir/bench.data $dir/bench.png ossfs s3fs goofys ossfs+readdir-optimize
convert -rotate 90 $dir/bench.png $dir/bench.png