Module mz_rocksdb_types::config

source ·
Expand description

This module offers a protobuf implementation (to be used with LaunchDarkly) RocksDBTuningParameters that can be used to tune a RocksDB instance. The supported options are carefully considered to be a minimal set required to tune RocksDB to perform well for the UPSERT usecase. This usecase is slightly odd:

  • Very high write rate (1:1 with reads)
  • No durability requirements
  • Minimal space amplification
  • Relatively relaxed read and write latency requirements
    • (note that UPSERT RocksDB instances are NOT in the critical path for any sort of query.

The defaults (so, the values resulting from derserializing {} into a RocksDBTuningParameters) should be reasonable defaults.

The documentation on each field in RocksDBTuningParameters has more information

Note that the following documents are required reading to deeply understand this module:

Modules§

Structs§

Enums§

  • The 2 primary compaction styles in RocksDB. See RocksDBTuningParameters::compaction_style` for more information.
  • Mz-supported compression types in RocksDB. See RocksDBTuningParameters::compression_type` for more information.