We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc033dd commit 4a7711dCopy full SHA for 4a7711d
src/main/java/io/pwrlabs/database/rocksdb/MerkleTree.java
@@ -109,6 +109,7 @@ public MerkleTree(String treeName) throws RocksDBException {
109
.setMaxTotalWalSize(250L * 1024 * 1024) // total WAL across all CFs ≤ 250 MB
110
.setWalSizeLimitMB(250) // (optional) per-WAL-file soft limit
111
.setKeepLogFileNum(3); // keep at most 3 WAL files, regardless of age/size
112
+
113
// 2) Table format: no cache, small blocks
114
BlockBasedTableConfig tableConfig = new BlockBasedTableConfig()
115
.setNoBlockCache(true)
0 commit comments