state.backend.rocksdb.block.blocksize |
(none) |
MemorySize |
The approximate size (in bytes) of user data packed per block. RocksDB has default blocksize as '4KB'. |
state.backend.rocksdb.block.cache-size |
(none) |
MemorySize |
The amount of the cache for data blocks in RocksDB. RocksDB has default block-cache size as '8MB'. |
state.backend.rocksdb.compaction.level.max-size-level-base |
(none) |
MemorySize |
The upper-bound of the total size of level base files in bytes. RocksDB has default configuration as '256MB'. |
state.backend.rocksdb.compaction.level.target-file-size-base |
(none) |
MemorySize |
The target file size for compaction, which determines a level-1 file size. RocksDB has default configuration as '64MB'. |
state.backend.rocksdb.compaction.level.use-dynamic-size |
(none) |
Boolean |
If true, RocksDB will pick target size of each level dynamically. From an empty DB, RocksDB would make last level the base level, which means merging L0 data into the last level, until it exceeds max_bytes_for_level_base. And then repeat this process for second last level and so on. RocksDB has default configuration as 'false'. For more information, please refer to RocksDB's doc. |
state.backend.rocksdb.compaction.style |
(none) |
Enum Possible values: [LEVEL, UNIVERSAL, FIFO] |
The specified compaction style for DB. Candidate compaction style is LEVEL, FIFO or UNIVERSAL, and RocksDB choose 'LEVEL' as default style. |
state.backend.rocksdb.files.open |
(none) |
Integer |
The maximum number of open files (per TaskManager) that can be used by the DB, '-1' means no limit. RocksDB has default configuration as '-1'. |
state.backend.rocksdb.thread.num |
(none) |
Integer |
The maximum number of concurrent background flush and compaction jobs (per TaskManager). RocksDB has default configuration as '1'. |
state.backend.rocksdb.write-batch-size |
2 mb |
MemorySize |
The max size of the consumed memory for RocksDB batch write, will flush just based on item count if this config set to 0. |
state.backend.rocksdb.writebuffer.count |
(none) |
Integer |
The maximum number of write buffers that are built up in memory. RocksDB has default configuration as '2'. |
state.backend.rocksdb.writebuffer.number-to-merge |
(none) |
Integer |
The minimum number of write buffers that will be merged together before writing to storage. RocksDB has default configuration as '1'. |
state.backend.rocksdb.writebuffer.size |
(none) |
MemorySize |
The amount of data built up in memory (backed by an unsorted log on disk) before converting to a sorted on-disk files. RocksDB has default writebuffer size as '64MB'. |