| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414 | #!/usr/bin/env bash# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.set -eNUM=10000000if [ $# -eq 1 ];then  DATA_DIR=$1elif [ $# -eq 2 ];then  DATA_DIR=$1  STAT_FILE=$2fi# On the production build servers, set data and stat# files/directories not in /tmp or else the tempdir cleaning# scripts will make you very unhappy.DATA_DIR=${DATA_DIR:-$(mktemp -t -d rocksdb_XXXX)}STAT_FILE=${STAT_FILE:-$(mktemp -t -u rocksdb_test_stats_XXXX)}function cleanup {  rm -rf $DATA_DIR  rm -f $STAT_FILE.fillseq  rm -f $STAT_FILE.readrandom  rm -f $STAT_FILE.overwrite  rm -f $STAT_FILE.memtablefillreadrandom}trap cleanup EXITif [ -z $GIT_BRANCH ]; then  git_br=`git rev-parse --abbrev-ref HEAD`else  git_br=$(basename $GIT_BRANCH)fiif [ $git_br == "master" ]; then  git_br=""else  git_br="."$git_brfimake release# measure fillseq + fill up the DB for overwrite benchmark./db_bench \    --benchmarks=fillseq \    --db=$DATA_DIR \    --use_existing_db=0 \    --bloom_bits=10 \    --num=$NUM \    --writes=$NUM \    --cache_size=6442450944 \    --cache_numshardbits=6 \    --table_cache_numshardbits=4 \    --open_files=55000 \    --statistics=1 \    --histogram=1 \    --disable_wal=1 \    --sync=0  > ${STAT_FILE}.fillseq# measure overwrite performance./db_bench \    --benchmarks=overwrite \    --db=$DATA_DIR \    --use_existing_db=1 \    --bloom_bits=10 \    --num=$NUM \    --writes=$((NUM / 10)) \    --cache_size=6442450944 \    --cache_numshardbits=6  \    --table_cache_numshardbits=4 \    --open_files=55000 \    --statistics=1 \    --histogram=1 \    --disable_wal=1 \    --sync=0 \    --threads=8 > ${STAT_FILE}.overwrite# fill up the db for readrandom benchmark (1GB total size)./db_bench \    --benchmarks=fillseq \    --db=$DATA_DIR \    --use_existing_db=0 \    --bloom_bits=10 \    --num=$NUM \    --writes=$NUM \    --cache_size=6442450944 \    --cache_numshardbits=6 \    --table_cache_numshardbits=4 \    --open_files=55000 \    --statistics=1 \    --histogram=1 \    --disable_wal=1 \    --sync=0 \    --threads=1 > /dev/null# measure readrandom with 6GB block cache./db_bench \    --benchmarks=readrandom \    --db=$DATA_DIR \    --use_existing_db=1 \    --bloom_bits=10 \    --num=$NUM \    --reads=$((NUM / 5)) \    --cache_size=6442450944 \    --cache_numshardbits=6 \    --table_cache_numshardbits=4 \    --open_files=55000 \    --statistics=1 \    --histogram=1 \    --disable_wal=1 \    --sync=0 \    --threads=16 > ${STAT_FILE}.readrandom# measure readrandom with 6GB block cache and tailing iterator./db_bench \    --benchmarks=readrandom \    --db=$DATA_DIR \    --use_existing_db=1 \    --bloom_bits=10 \    --num=$NUM \    --reads=$((NUM / 5)) \    --cache_size=6442450944 \    --cache_numshardbits=6 \    --table_cache_numshardbits=4 \    --open_files=55000 \    --use_tailing_iterator=1 \    --statistics=1 \    --histogram=1 \    --disable_wal=1 \    --sync=0 \    --threads=16 > ${STAT_FILE}.readrandomtailing# measure readrandom with 100MB block cache./db_bench \    --benchmarks=readrandom \    --db=$DATA_DIR \    --use_existing_db=1 \    --bloom_bits=10 \    --num=$NUM \    --reads=$((NUM / 5)) \    --cache_size=104857600 \    --cache_numshardbits=6 \    --table_cache_numshardbits=4 \    --open_files=55000 \    --statistics=1 \    --histogram=1 \    --disable_wal=1 \    --sync=0 \    --threads=16 > ${STAT_FILE}.readrandomsmallblockcache# measure readrandom with 8k data in memtable./db_bench \    --benchmarks=overwrite,readrandom \    --db=$DATA_DIR \    --use_existing_db=1 \    --bloom_bits=10 \    --num=$NUM \    --reads=$((NUM / 5)) \    --writes=512 \    --cache_size=6442450944 \    --cache_numshardbits=6 \    --table_cache_numshardbits=4 \    --write_buffer_size=1000000000 \    --open_files=55000 \    --statistics=1 \    --histogram=1 \    --disable_wal=1 \    --sync=0 \    --threads=16 > ${STAT_FILE}.readrandom_mem_sst# fill up the db for readrandom benchmark with filluniquerandom (1GB total size)./db_bench \    --benchmarks=filluniquerandom \    --db=$DATA_DIR \    --use_existing_db=0 \    --bloom_bits=10 \    --num=$((NUM / 4)) \    --writes=$((NUM / 4)) \    --cache_size=6442450944 \    --cache_numshardbits=6 \    --table_cache_numshardbits=4 \    --open_files=55000 \    --statistics=1 \    --histogram=1 \    --disable_wal=1 \    --sync=0 \    --threads=1 > /dev/null# dummy test just to compact the data./db_bench \    --benchmarks=readrandom \    --db=$DATA_DIR \    --use_existing_db=1 \    --bloom_bits=10 \    --num=$((NUM / 1000)) \    --reads=$((NUM / 1000)) \    --cache_size=6442450944 \    --cache_numshardbits=6 \    --table_cache_numshardbits=4 \    --open_files=55000 \    --statistics=1 \    --histogram=1 \    --disable_wal=1 \    --sync=0 \    --threads=16 > /dev/null# measure readrandom after load with filluniquerandom with 6GB block cache./db_bench \    --benchmarks=readrandom \    --db=$DATA_DIR \    --use_existing_db=1 \    --bloom_bits=10 \    --num=$((NUM / 4)) \    --reads=$((NUM / 4)) \    --cache_size=6442450944 \    --cache_numshardbits=6 \    --table_cache_numshardbits=4 \    --open_files=55000 \    --disable_auto_compactions=1 \    --statistics=1 \    --histogram=1 \    --disable_wal=1 \    --sync=0 \    --threads=16 > ${STAT_FILE}.readrandom_filluniquerandom# measure readwhilewriting after load with filluniquerandom with 6GB block cache./db_bench \    --benchmarks=readwhilewriting \    --db=$DATA_DIR \    --use_existing_db=1 \    --bloom_bits=10 \    --num=$((NUM / 4)) \    --reads=$((NUM / 4)) \    --benchmark_write_rate_limit=$(( 110 * 1024 )) \    --write_buffer_size=100000000 \    --cache_size=6442450944 \    --cache_numshardbits=6 \    --table_cache_numshardbits=4 \    --open_files=55000 \    --statistics=1 \    --histogram=1 \    --disable_wal=1 \    --sync=0 \    --threads=16 > ${STAT_FILE}.readwhilewriting# measure memtable performance -- none of the data gets flushed to disk./db_bench \    --benchmarks=fillrandom,readrandom, \    --db=$DATA_DIR \    --use_existing_db=0 \    --num=$((NUM / 10)) \    --reads=$NUM \    --cache_size=6442450944 \    --cache_numshardbits=6 \    --table_cache_numshardbits=4 \    --write_buffer_size=1000000000 \    --open_files=55000 \    --statistics=1 \    --histogram=1 \    --disable_wal=1 \    --sync=0 \    --value_size=10 \    --threads=16 > ${STAT_FILE}.memtablefillreadrandomcommon_in_mem_args="--db=/dev/shm/rocksdb \    --num_levels=6 \    --key_size=20 \    --prefix_size=12 \    --keys_per_prefix=10 \    --value_size=100 \    --compression_type=none \    --compression_ratio=1 \    --hard_rate_limit=2 \    --write_buffer_size=134217728 \    --max_write_buffer_number=4 \    --level0_file_num_compaction_trigger=8 \    --level0_slowdown_writes_trigger=16 \    --level0_stop_writes_trigger=24 \    --target_file_size_base=134217728 \    --max_bytes_for_level_base=1073741824 \    --disable_wal=0 \    --wal_dir=/dev/shm/rocksdb \    --sync=0 \    --verify_checksum=1 \    --delete_obsolete_files_period_micros=314572800 \    --max_grandparent_overlap_factor=10 \    --use_plain_table=1 \    --open_files=-1 \    --mmap_read=1 \    --mmap_write=0 \    --memtablerep=prefix_hash \    --bloom_bits=10 \    --bloom_locality=1 \    --perf_level=0"# prepare a in-memory DB with 50M keys, total DB size is ~6G./db_bench \    $common_in_mem_args \    --statistics=0 \    --max_background_compactions=16 \    --max_background_flushes=16 \    --benchmarks=filluniquerandom \    --use_existing_db=0 \    --num=52428800 \    --threads=1 > /dev/null# Readwhilewriting./db_bench \    $common_in_mem_args \    --statistics=1 \    --max_background_compactions=4 \    --max_background_flushes=0 \    --benchmarks=readwhilewriting\    --use_existing_db=1 \    --duration=600 \    --threads=32 \    --benchmark_write_rate_limit=9502720 > ${STAT_FILE}.readwhilewriting_in_ram# Seekrandomwhilewriting./db_bench \    $common_in_mem_args \    --statistics=1 \    --max_background_compactions=4 \    --max_background_flushes=0 \    --benchmarks=seekrandomwhilewriting \    --use_existing_db=1 \    --use_tailing_iterator=1 \    --duration=600 \    --threads=32 \    --benchmark_write_rate_limit=9502720 > ${STAT_FILE}.seekwhilewriting_in_ram# measure fillseq with bunch of column families./db_bench \    --benchmarks=fillseq \    --num_column_families=500 \    --write_buffer_size=1048576 \    --db=$DATA_DIR \    --use_existing_db=0 \    --num=$NUM \    --writes=$NUM \    --open_files=55000 \    --statistics=1 \    --histogram=1 \    --disable_wal=1 \    --sync=0  > ${STAT_FILE}.fillseq_lots_column_families# measure overwrite performance with bunch of column families./db_bench \    --benchmarks=overwrite \    --num_column_families=500 \    --write_buffer_size=1048576 \    --db=$DATA_DIR \    --use_existing_db=1 \    --num=$NUM \    --writes=$((NUM / 10)) \    --open_files=55000 \    --statistics=1 \    --histogram=1 \    --disable_wal=1 \    --sync=0 \    --threads=8 > ${STAT_FILE}.overwrite_lots_column_families# send data to odsfunction send_to_ods {  key="$1"  value="$2"  if [ -z $JENKINS_HOME ]; then    # running on devbox, just print out the values    echo $1 $2    return  fi  if [ -z "$value" ];then    echo >&2 "ERROR: Key $key doesn't have a value."    return  fi  curl --silent "https://www.intern.facebook.com/intern/agent/ods_set.php?entity=rocksdb_build$git_br&key=$key&value=$value" \    --connect-timeout 60}function send_benchmark_to_ods {  bench="$1"  bench_key="$2"  file="$3"  QPS=$(grep $bench $file | awk '{print $5}')  P50_MICROS=$(grep $bench $file -A 6 | grep "Percentiles" | awk '{print $3}' )  P75_MICROS=$(grep $bench $file -A 6 | grep "Percentiles" | awk '{print $5}' )  P99_MICROS=$(grep $bench $file -A 6 | grep "Percentiles" | awk '{print $7}' )  send_to_ods rocksdb.build.$bench_key.qps $QPS  send_to_ods rocksdb.build.$bench_key.p50_micros $P50_MICROS  send_to_ods rocksdb.build.$bench_key.p75_micros $P75_MICROS  send_to_ods rocksdb.build.$bench_key.p99_micros $P99_MICROS}send_benchmark_to_ods overwrite overwrite $STAT_FILE.overwritesend_benchmark_to_ods fillseq fillseq $STAT_FILE.fillseqsend_benchmark_to_ods readrandom readrandom $STAT_FILE.readrandomsend_benchmark_to_ods readrandom readrandom_tailing $STAT_FILE.readrandomtailingsend_benchmark_to_ods readrandom readrandom_smallblockcache $STAT_FILE.readrandomsmallblockcachesend_benchmark_to_ods readrandom readrandom_memtable_sst $STAT_FILE.readrandom_mem_sstsend_benchmark_to_ods readrandom readrandom_fillunique_random $STAT_FILE.readrandom_filluniquerandomsend_benchmark_to_ods fillrandom memtablefillrandom $STAT_FILE.memtablefillreadrandomsend_benchmark_to_ods readrandom memtablereadrandom $STAT_FILE.memtablefillreadrandomsend_benchmark_to_ods readwhilewriting readwhilewriting $STAT_FILE.readwhilewritingsend_benchmark_to_ods readwhilewriting readwhilewriting_in_ram ${STAT_FILE}.readwhilewriting_in_ramsend_benchmark_to_ods seekrandomwhilewriting seekwhilewriting_in_ram ${STAT_FILE}.seekwhilewriting_in_ramsend_benchmark_to_ods fillseq fillseq_lots_column_families ${STAT_FILE}.fillseq_lots_column_familiessend_benchmark_to_ods overwrite overwrite_lots_column_families ${STAT_FILE}.overwrite_lots_column_families
 |