BS-tree: A gapped data-parallel B-tree
Dimitrios Tsitsigkos, Achilleas Michalopoulos, Nikos Mamoulis, and Manolis Terrovitis

TL;DR
BS-tree is a novel in-memory B+-tree that uses SIMD instructions and gap-enabled nodes with compression to achieve faster, branchless search and update operations, outperforming existing main-memory indices.
Contribution
The paper introduces BS-tree, a memory-efficient, SIMD-optimized B+-tree with gap-enabled nodes and variable capacity compression, improving search and update performance.
Findings
Outperforms existing main-memory indices in speed and robustness.
Enables branchless SIMD search and updates within nodes.
Reduces memory footprint through FOR compression.
Abstract
We propose BS-tree, an in-memory implementation of the B+-tree that adopts the structure of the disk-based index (i.e., a balanced, multiway tree), setting the node size to a memory block that can be processed fast and in parallel using SIMD instructions. A novel feature of the BS-tree is that it enables gaps (unused positions) within nodes by duplicating key values. This allows (i) branchless SIMD search within each node, and (ii) branchless update operations in nodes without key shifting. We implement a frame of reference (FOR) compression mechanism, which allows nodes to have varying capacities, and can greatly decrease the memory footprint of BS-tree. We compare our approach to existing main-memory indices and learned indices under different workloads of queries and updates and demonstrate its robustness and superiority compared to previous work in single- and multi-threaded…
Peer Reviews
No public reviews on file for this paper yet. If you reviewed it on a platform where reviews are public (OpenReview, ICLR, NeurIPS, ICML), you can paste yours below so the community can read it here.
Videos
No videos yet. Explain this paper in a talk, walkthrough, or lecture? Add one.
Taxonomy
TopicsData Mining Algorithms and Applications · Advanced Database Systems and Queries · Data Management and Algorithms
