forked from kahing/goofys
-
Notifications
You must be signed in to change notification settings - Fork 1
/
bench.sh
executable file
·440 lines (375 loc) · 8.65 KB
/
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
#!/bin/bash
: ${TRAVIS:="false"}
: ${FAST:="false"}
: ${test:=""}
: ${CACHE:="false"}
: ${CLEANUP:="true"}
iter=10
if [ "$TRAVIS" != "false" ]; then
set -o xtrace
iter=1
fi
if [ "$FAST" != "false" ]; then
iter=1
fi
set -o errexit
set -o nounset
if [ $# -lt 2 ]; then
echo "Usage: $0 <mount cmd> <dir> [test name]"
exit 1
fi
cmd=$1
mnt=$2
if [ $# -gt 2 ]; then
t=$3
else
t=
fi
prefix=$mnt/test_dir
MOUNTED=0
if [[ "$cmd" == riofs* ]]; then
RIOFS="true"
else
RIOFS="false"
fi
if [[ "$cmd" == blobfuse* ]]; then
BLOBFUSE="true"
else
BLOBFUSE="false"
fi
$cmd >& mount.log &
PID=$!
function cleanup {
if [ $MOUNTED == 1 ]; then
popd >/dev/null
if [ "$CLEANUP" = "true" ]; then
if [ "$TRAVIS" != "false" ]; then
rmdir $prefix
else
rmdir $prefix >& /dev/null || true # riofs doesn't support rmdir
fi
fi
fi
if [ "$PID" != "" ]; then
kill $PID >& /dev/null || true
fusermount -u $mnt >& /dev/null || true
sleep 1
fi
}
function cleanup_err {
err=$?
cat mount.log
if [ $MOUNTED == 1 ]; then
popd >&/dev/null || true
rmdir $prefix >&/dev/null || true
fi
if [ "$PID" != "" ]; then
kill $PID >& /dev/null || true
fusermount -u $mnt >& /dev/null || true
fi
return $err
}
trap cleanup EXIT
trap cleanup_err ERR
function wait_for_mount {
for i in $(seq 1 10); do
if grep -q $mnt /proc/mounts; then
break
fi
sleep 1
done
if ! grep -q $mnt /proc/mounts; then
echo "$mnt not mounted by $cmd"
cat mount.log
exit 1
fi
}
if [ "$TRAVIS" == "false" -a "$cmd" != "cat" ]; then
wait_for_mount
MOUNTED=1
else
# in travis we mount things externally so we know we are mounted
MOUNTED=1
fi
mkdir -p "$prefix"
pushd "$prefix" >/dev/null
SUDO=
if [ $(id -u) != 0 ]; then
SUDO=sudo
fi
function drop_cache {
if [ "$TRAVIS" == "false" ]; then
(echo 3 | $SUDO tee /proc/sys/vm/drop_caches) > /dev/null
fi
}
export TIMEFORMAT=%R
function run_test {
test=$1
shift
drop_cache
sleep 2
if [ "$CACHE" == "false" ]; then
if [ -d /tmp/cache ]; then
rm -Rf /tmp/cache/*
fi
if [ "$BLOBFUSE" == "true" ]; then
popd >/dev/null
# re-mount blobfuse to cleanup cache
if [ "$PID" != "" ]; then
fusermount -u $mnt
sleep 1
fi
$cmd >& mount.log &
PID=$!
wait_for_mount
pushd "$prefix" >/dev/null
fi
fi
echo -n "$test "
if [ $# -gt 1 ]; then
time $test $@
else
time $test
fi
}
function get_howmany {
if [ "$TRAVIS" != "false" ]; then
if [ $# == 2 ]; then
howmany=$2
else
howmany=10
fi
else
if [ $# == 0 ]; then
howmany=100
else
howmany=$1
fi
fi
}
function create_files {
get_howmany $@
for i in $(seq 1 $howmany); do
echo $i > file$i
done
}
function ls_files {
get_howmany $@
# people usually use ls in the terminal when color is on
numfiles=$(ls -1 --color=always | wc -l)
if [ "$numfiles" != "$howmany" ]; then
echo "$numfiles != $howmany"
false
fi
}
function rm_files {
get_howmany $@
for i in $(seq 1 $howmany); do
rm file$i >&/dev/null || true
done
}
function find_files {
numfiles=$(find | wc -l)
if [ "$numfiles" != 820 ]; then
echo "$numfiles != 820"
rm_tree
exit 1
fi
}
function create_tree_parallel {
(for i in $(seq 1 9); do
mkdir $i
for j in $(seq 1 9); do
mkdir $i/$j
for k in $(seq 1 9); do
touch $i/$j/$k & true
done
done
done
wait)
}
function rm_tree {
for i in $(seq 1 9); do
rm -Rf $i
done
}
function create_files_parallel {
get_howmany $@
(for i in $(seq 1 $howmany); do
echo $i > file$i & true
done
wait)
}
function rm_files_parallel {
get_howmany $@
(for i in $(seq 1 $howmany); do
rm file$i & true
done
wait)
}
function write_large_file {
count=1000
if [ "$FAST" == "true" ]; then
count=100
fi
dd if=/dev/zero of=largefile bs=1MB count=$count oflag=nocache status=none
}
function read_large_file {
dd if=largefile of=/dev/null bs=1MB iflag=nocache status=none
}
function read_first_byte {
dd if=largefile of=/dev/null bs=1 count=1 iflag=nocache status=none
}
if [ "$t" = "" -o "$t" = "create" ]; then
for i in $(seq 1 $iter); do
run_test create_files
run_test rm_files
done
fi
if [ "$t" = "" -o "$t" = "create_parallel" ]; then
for i in $(seq 1 $iter); do
run_test create_files_parallel
run_test rm_files_parallel
done
fi
function write_md5 {
seed=$(dd if=/dev/urandom bs=128 count=1 status=none | base64 -w 0)
random_cmd="openssl enc -aes-256-ctr -pbkdf2 -pass pass:$seed -nosalt"
count=1000
if [ "$FAST" == "true" ]; then
count=100
fi
MD5=$(dd if=/dev/zero bs=1MB count=$count status=none | $random_cmd | \
tee >(md5sum) >(dd of=largefile bs=1MB oflag=nocache status=none) >/dev/null | cut -f 1 '-d ')
if [ "$RIOFS" == "true" ]; then
# riofs doesn't wait for flush, so we need to wait for object to show up
# XXX kind of broken due to eventual consistency but it's hte best we can do
while ! aws s3api --endpoint ${ENDPOINT} head-object --bucket ${BUCKET} --key test_dir/largefile >& /dev/null; do sleep 0.1; done
fi
}
function read_md5 {
READ_MD5=$(md5sum largefile | cut -f 1 '-d ')
if [ "$READ_MD5" != "$MD5" ]; then
echo "$READ_MD5 != $MD5" >&2
rm largefile
exit 1
fi
}
function rm {
if [ "$RIOFS" == "true" ]; then
while ! /bin/rm $@; do true; done
else
/bin/rm $@
fi
}
if [ "$t" = "" -o "$t" = "io" ]; then
for i in $(seq 1 $iter); do
run_test write_md5
if [ "$CACHE" != "true" ]; then
run_test read_md5
run_test read_first_byte
fi
rm largefile
done
if [ "$CACHE" = "true" ]; then
write_md5
read_md5
for i in $(seq 1 $iter); do
run_test read_md5
run_test read_first_byte
done
rm largefile
fi
fi
if [ "$t" = "" -o "$t" = "ls" ]; then
create_files_parallel 2000 2000
for i in $(seq 1 $iter); do
run_test ls_files 2000 2000
done
if [ "$CLEANUP" = "true" ]; then
rm_files 2000 2000
fi
fi
if [ "$t" = "ls_create" ]; then
create_files_parallel 1000
test=dummy
sleep 10
fi
if [ "$t" = "ls_ls" ]; then
run_test ls_files 1000 1000
fi
if [ "$t" = "ls_rm" ]; then
rm_files 1000
test=dummy
fi
if [ "$t" = "" -o "$t" = "find" ]; then
create_tree_parallel
for i in $(seq 1 $iter); do
run_test find_files
done
rm_tree
fi
if [ "$t" = "find_create" ]; then
create_tree_parallel
test=dummy
sleep 10
fi
if [ "$t" = "find_find" ]; then
for i in $(seq 1 $iter); do
run_test find_files
done
fi
if [ "$t" = "issue231" ]; then
run_test write_md5
(for i in $(seq 1 20); do
run_test read_md5 & true
done; wait);
rm largefile
fi
if [ "$t" = "cleanup" ]; then
rm -Rf *
test=dummy
fi
# for https://github.com/ppenguin/goofys/issues/64
# quote: There are 5 concurrent transfers gong at a time.
# Data file size is often 100-400MB.
# Regarding the number of transfers, I think it's about 200 files.
# We read from the goofys mounted s3 bucket and write to a local spring webapp using curl.
if [ "$t" = "disable" -o "$t" = "issue64" ]; then
# setup the files
(for i in $(seq 0 9); do
dd if=/dev/zero of=file$i bs=1MB count=300 oflag=nocache status=none & true
done
wait)
if [ $? != 0 ]; then
exit $?
fi
# 200 files and 5 concurrent transfer means 40 times, do 50 times for good measure
(for i in $(seq 0 9); do
dd if=file$i of=/dev/null bs=1MB iflag=nocache status=none &
done
for i in $(seq 10 300); do
# wait for 1 to finish, then invoke more
wait -n
running=$(ps -ef | grep ' dd if=' | grep -v grep | sed 's/.*dd if=file\([0-9]\).*/\1/')
for i in $(seq 0 9); do
if echo $running | grep -v -q $i; then
dd if=file$i of=/dev/null bs=1MB iflag=nocache status=none &
break
fi
done
done
wait)
if [ $? != 0 ]; then
exit $?
fi
# cleanup
(for i in $(seq 0 9); do
rm -f file$i & true
done
wait)
fi
if [ "$test" = "" ]; then
echo "No test was run: $t"
exit 1
fi