default_rocksdb_config

Function default_rocksdb_config 

Source
pub fn default_rocksdb_config() -> RocksDbConfig
Expand description

The tuned [RocksDbConfig] this crate ships as its baseline for the sui-rpc-store column families.

Operators layer their own overrides on top via [RocksDbConfig::merge_over]; anything they leave unset falls back to these values. The defaults port the production-proven settings from typed_store and bake in a “no write stalls, generous compaction parallelism” policy: the pending-compaction stall limits are disabled and the L0 triggers raised so neither the bulk restore nor steady-state indexing throttles on compaction debt, while the L0 stop trigger still bounds a runaway backlog.