Skip to content

Instantly share code, notes, and snippets.

@mdcallag
Created June 22, 2023 23:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mdcallag/45b2ef6190214dfc4d64f27611ccf4eb to your computer and use it in GitHub Desktop.
Save mdcallag/45b2ef6190214dfc4d64f27611ccf4eb to your computer and use it in GitHub Desktop.
./db_bench --benchmarks=fillseq,stats --num=100000000 --compaction_style=0 --compression_type=none --level_compaction_dynamic_level_bytes >& o.0.cnone
./db_bench --benchmarks=fillseq,stats --num=100000000 --compaction_style=1 --compression_type=none >& o.1.cnone
./db_bench --benchmarks=fillseq,stats --num=100000000 --compaction_style=1 --compression_type=none --universal_allow_trivial_move >& o.1.tm.cnone
./db_bench --benchmarks=fillseq,stats --num=100000000 --compaction_style=0 --compression_type=lz4 --level_compaction_dynamic_level_bytes >& o.0.lz4_all
./db_bench --benchmarks=fillseq,stats --num=100000000 --compaction_style=1 --compression_type=lz4 >& o.1.lz4_all
./db_bench --benchmarks=fillseq,stats --num=100000000 --compaction_style=1 --compression_type=lz4 --universal_allow_trivial_move >& o.1.tm.lz4_all
./db_bench --benchmarks=fillseq,stats --num=100000000 --compaction_style=0 --compression_type=lz4 --min_level_to_compress=2 --level_compaction_dynamic_level_bytes >& o.0.lz4_ml2c_2
./db_bench --benchmarks=fillseq,stats --num=100000000 --compaction_style=1 --compression_type=lz4 --min_level_to_compress=2 >& o.1.lz4_ml2c_2
./db_bench --benchmarks=fillseq,stats --num=100000000 --compaction_style=1 --compression_type=lz4 --min_level_to_compress=2 --universal_allow_trivial_move >& o.1.tm.lz4_ml2c_2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment