From 12a5dcb910dd3b3c8348fc84c4d6e37952d706f7 Mon Sep 17 00:00:00 2001 From: smpdt <206221751+smpdt@users.noreply.github.com> Date: Sun, 11 Jan 2026 11:50:30 -0500 Subject: [PATCH] Add TODO comment clarifying block_cache_size_bytes is unsupported SlateDB v0.9.2 (restore-checkpoint fork) does not implement block caching yet. Mark the config field with a TODO to avoid confusion. --- portalbd/src/config.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/portalbd/src/config.rs b/portalbd/src/config.rs index 43767fa..1769ce3 100644 --- a/portalbd/src/config.rs +++ b/portalbd/src/config.rs @@ -150,7 +150,10 @@ pub struct LsmConfig { pub l0_max_ssts: Option, pub max_unflushed_bytes: Option, pub filter_bits_per_key: Option, + + /// TODO: Not supported by SlateDB v0.9.2 yet. Reserved for future use. pub block_cache_size_bytes: Option, + /// Compression codec for SST blocks. Default is Lz4. /// Compression reduces storage size and network I/O at the cost of CPU. pub compression_codec: Option,