5504a056f8
Summary: This adds some rules in the tools/advisor/advisor/rules.ini (refer this for more information) file and corresponding python parser scripts for parsing the rules file and the rocksdb LOG and OPTIONS files. This is WIP for adding rules depending on ODS. The starting point of the script is the rocksdb/tools/advisor/advisor/rule_parser.py file. Closes https://github.com/facebook/rocksdb/pull/3934 Reviewed By: maysamyabandeh Differential Revision: D8304059 Pulled By: poojam23 fbshipit-source-id: 47f2a50f04d46d40e225dd1cbf58ba490f79e239
32 lines
732 B
Plaintext
32 lines
732 B
Plaintext
# This is a RocksDB option file.
|
|
#
|
|
# For detailed file format spec, please refer to the example file
|
|
# in examples/rocksdb_option_file_example.ini
|
|
#
|
|
|
|
[Version]
|
|
rocksdb_version=5.14.0
|
|
options_file_version=1.1
|
|
|
|
[DBOptions]
|
|
manual_wal_flush=false
|
|
allow_ingest_behind=false
|
|
db_write_buffer_size=0
|
|
|
|
|
|
[CFOptions "default"]
|
|
ttl=0
|
|
max_bytes_for_level_base=268435456
|
|
max_bytes_for_level_multiplier=10.000000
|
|
level0_file_num_compaction_trigger=4
|
|
level0_stop_writes_trigger=36
|
|
write_buffer_size=4194000
|
|
min_write_buffer_number_to_merge=1
|
|
num_levels=7
|
|
compaction_filter_factory=nullptr
|
|
compaction_style=kCompactionStyleLevel
|
|
|
|
[TableOptions/BlockBasedTable "default"]
|
|
block_align=false
|
|
index_type=kBinarySearch
|