Lines Matching +full:s3 +full:- +full:benchmarks
18 # Script for running multiple Transfer manager benchmarks at the same time
22 echo " benchmark download|upload fs|tmpfs|no-op [<size>]"
30 if [[ -z "$1" ]]; then
43 if [[ -z "$2" ]]; then
49 if ([ "$location_name" != fs ] && [ "$location_name" != tmpfs ] && [ "$location_name" != "no-op" ])…
62 if [ ! -d result ]; then
66 sizes_str="1B 8MB+1 8MB-1 128MB 4GB 30GB"
71 echo "===== TM PERF TEST SUITE - $operation - $location_name ====="
74 echo "Benchmark: $version - $size"
76 cmd="java -jar ../target/s3-benchmarks.jar \
77 --key=$size \
78 --operation=$operation \
79 --bucket=do-not-delete-crt-s3-eu-west-1 \
80 --partSizeInMB=8 \
81 --maxThroughput=100.0 \
82 --iteration=8 \
83 --version=$version \
84 --readBufferInMB=3072"
85 if [[ -n $location ]]
87 cmd="$cmd --file=$location$size"
91 $cmd | tee -a "result/$result_file"
98 if [ ! -z "$3" ]