Users pass options to RocksDB through Options class. Other than setting options in the Options class, there are two other ways to set it:

  • get an option class from an option file.
  • get it from an option string by calling
  • get it from a string map

Option String

To get an option from a string, call helper function GetColumnFamilyOptionsFromString() or GetDBOptionsFromString() with a string containing the information. There is also a special GetBlockBasedTableOptionsFromString() and GetPlainTableOptionsFromString() to get table specific option.

An example of an option string will like this:

  1. table_factory=PlainTable;prefix_extractor=rocksdb.CappedPrefix.13;comparator=leveldb.BytewiseComparator;compression_per_level=kBZip2Compression:kBZip2Compression:kBZip2Compression:kNoCompression:kZlibCompression:kBZip2Compression:kSnappyCompression;max_bytes_for_level_base=986;bloom_locality=8016;target_file_size_base=4294976376;memtable_huge_page_size=2557;max_successive_merges=5497;max_sequential_skip_in_iterations=4294971408;arena_block_size=1893;target_file_size_multiplier=35;min_write_buffer_number_to_merge=9;max_write_buffer_number=84;write_buffer_size=1653;max_compaction_bytes=64;max_bytes_for_level_multiplier=60;memtable_factory=SkipListFactory;compression=kNoCompression;bottommost_compression=kDisableCompressionOption;min_partial_merge_operands=7576;level0_stop_writes_trigger=33;num_levels=99;level0_slowdown_writes_trigger=22;level0_file_num_compaction_trigger=14;compaction_filter=urxcqstuwnCompactionFilter;soft_rate_limit=530.615385;soft_pending_compaction_bytes_limit=0;max_write_buffer_number_to_maintain=84;verify_checksums_in_compaction=false;merge_operator=aabcxehazrMergeOperator;memtable_prefix_bloom_size_ratio=0.4642;memtable_insert_with_hint_prefix_extractor=rocksdb.CappedPrefix.13;paranoid_file_checks=true;force_consistency_checks=true;inplace_update_num_locks=7429;optimize_filters_for_hits=false;level_compaction_dynamic_level_bytes=false;inplace_update_support=false;compaction_style=kCompactionStyleFIFO;purge_redundant_kvs_while_flush=true;hard_pending_compaction_bytes_limit=0;disable_auto_compactions=false;report_bg_io_stats=true;compaction_filter_factory=mpudlojcujCompactionFilterFactory;

Each option will be given as <option_name>:<option_value> separated by ;. To find the list of options supported, check the section below

Options map

Similarly, users can get option classes from a string map, by calling helper function GetColumnFamilyOptionsFromMap(), GetDBOptionsFromMap(), GetBlockBasedTableOptionsFromMap() or GetPlainTableOptionsFromMap(). The string to string map is passed in, which maps from the option name and the option value, as a plain text string. An example of string map for an option is like this:

  1. std::unordered_map<std::string, std::string> cf_options_map = {
  2. {"write_buffer_size", "1"},
  3. {"max_write_buffer_number", "2"},
  4. {"min_write_buffer_number_to_merge", "3"},
  5. {"max_write_buffer_number_to_maintain", "99"},
  6. {"compression", "kSnappyCompression"},
  7. {"compression_per_level",
  8. "kNoCompression:"
  9. "kSnappyCompression:"
  10. "kZlibCompression:"
  11. "kBZip2Compression:"
  12. "kLZ4Compression:"
  13. "kLZ4HCCompression:"
  14. "kXpressCompression:"
  15. "kZSTD:"
  16. "kZSTDNotFinalCompression"},
  17. {"bottommost_compression", "kLZ4Compression"},
  18. {"compression_opts", "4:5:6:7"},
  19. {"num_levels", "8"},
  20. {"level0_file_num_compaction_trigger", "8"},
  21. {"level0_slowdown_writes_trigger", "9"},
  22. {"level0_stop_writes_trigger", "10"},
  23. {"target_file_size_base", "12"},
  24. {"target_file_size_multiplier", "13"},
  25. {"max_bytes_for_level_base", "14"},
  26. {"level_compaction_dynamic_level_bytes", "true"},
  27. {"max_bytes_for_level_multiplier", "15.0"},
  28. {"max_bytes_for_level_multiplier_additional", "16:17:18"},
  29. {"max_compaction_bytes", "21"},
  30. {"soft_rate_limit", "1.1"},
  31. {"hard_rate_limit", "2.1"},
  32. {"hard_pending_compaction_bytes_limit", "211"},
  33. {"arena_block_size", "22"},
  34. {"disable_auto_compactions", "true"},
  35. {"compaction_style", "kCompactionStyleLevel"},
  36. {"verify_checksums_in_compaction", "false"},
  37. {"compaction_options_fifo", "23"},
  38. {"max_sequential_skip_in_iterations", "24"},
  39. {"inplace_update_support", "true"},
  40. {"report_bg_io_stats", "true"},
  41. {"compaction_measure_io_stats", "false"},
  42. {"inplace_update_num_locks", "25"},
  43. {"memtable_prefix_bloom_size_ratio", "0.26"},
  44. {"memtable_huge_page_size", "28"},
  45. {"bloom_locality", "29"},
  46. {"max_successive_merges", "30"},
  47. {"min_partial_merge_operands", "31"},
  48. {"prefix_extractor", "fixed:31"},
  49. {"optimize_filters_for_hits", "true"},
  50. };

To find the list of options supported, check the section below

Find the supported options in option string and option map

In both of option string and option map, option name maps the variable names in the target class, DBOptions, ColumnFamilyOptions, BlockBasedTableOptions, or PlainTableOptions. For DBOptions and ColumnFamilyOptions, you can find the list of them and their descriptions in two respective classes in the source file options.h of the source code of your release. For the other two options, you can find them in file table.h

Note, although most of the options in the option class are supported in the option string, there are exceptions. You can find the list of supported options in variable db_options_type_info, cf_options_type_info and block_based_table_type_info in the source file util/options_helper.h of the source code of your release.

If the option is a callback class, e.g. comparators, compaction filter, and merge operators, you will usually need to pass the pointer of the callback class as the value, which will be casted in to an object.

There are exception. Some special callback classes are supported by the option string or map:

  • Prefix extractor (option name prefix_extractor), whose value can be passed as rocksdb.FixedPrefix.<prefix_length> or rocksdb.CappedPrefix.<prefix_length>.
  • Filter policy (option name filter_policy), whose value can be passed as bloomfilter:<bits_per_key>:<use_block_based>
  • Table factory (option name table_factory). The values will be either BlockBasedTable or PlainTable. Other than that, two special option string name is used to provide the options, block_based_table_factory or plain_table_factory. The value of the options will be the option string of BlockBasedTableOptions or PlainTableOptions.
  • Memtable Factory (option name memtable_factory). It can take value of skip_list, prefix_hash, hash_linkedlist, vector or cuckoo.