DBApr 16

Dynamic read & write optimization with TurtleKV

arXiv:2509.1071412.6h-index: 10
Predicted impact top 36% in DB · last 90 daysOriginality Incremental advance
AI Analysis

For developers of key-value stores and applications requiring high performance under mixed workloads, TurtleKV reduces the read-write trade-off and re-tuning costs.

TurtleKV introduces a new read-/write-balanced on-disk structure (TurtleTree) and flexible tuning knobs to optimize key-value stores for dynamic workloads, achieving up to 5x/12x faster inserts than RocksDB/WiredTiger, 16-25% faster mixed workloads than SplinterDB, and 2-9x faster point queries.

High read and write performance is important for generic key-value stores, which are foundational to modern applications and databases. Yet, achieving high performance for mixed and dynamic workloads is challenging due to fundamental trade-offs between memory use and I/O for retrieval and updates. Past work emphasizes the trade-off between read- and write-optimization as expressed through primary data structure, in combination with read-memory trade-off mechanisms like caching and filtering. This raises re-tuning costs as optimal trade-off targets change, due to restructuring of stored data. We show that write-memory trade-off mechanisms are under-developed in current designs, and propose a new approach to dynamic key-value store optimization using a novel read-/write-balanced on-disk structure, the TurtleTree, and flexible read-memory & write-memory tuning knobs. We describe how the design of TurtleKV, our prototype, avoids in-memory bottlenecks to achieve high performance across a wide range of tuning parameters. When evaluated using YCSB, TurtleKV matches state-of-the-art SplinterDB for inserts, and is 5x/12x faster than RockDB/WiredTiger. In mixed workloads, TurtleKV is 16-25% faster than SplinterDB, >4x RocksDB, and 3-6x WiredTiger. TurtleKV is 2-9x faster than the others for point-query workloads, and has the best scan performance of the write-optimized systems tested.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes