| Paper | Slides | Poster | Video |
πΏ BASIL is a benchmark that evaluates the performance of 8 state-of-the-art learned and traditional indexes using sampling on sorted datasets. It is an artifact of "Choi et al. Can Learned Indexes be Built Efficiently? A Deep Dive into Sampling Trade-offs. SIGMOD 2024". It is built on the earlier benchmark SOSD.
LIST
βββ ...
βββ benchmarks // configurations to be compiled and executed
βββ data // datasets
βββ indexes // source code of sampling applied indexes
βββ results // results of benchmark execution
βββ scripts // scripts for benchmark automation
β βββ reproduce // scripts for reproduction
βββ wrappers // interface of indexes
βββ meta // interface of indexes for measuring internal changes
On vanilla Ubuntu 20.04 LTS:
git clone https://github.com/DKU-StarLab/BASIL.git
cd BASIL
sudo apt -y update
sudo apt -y install zstd python3-pip m4 cmake clang libboost-all-dev
pip3 install -r requirements.txt
./scripts/download_data.sh
./scripts/prepare.sh
./scripts/generate.sh
Five types of benchmarks can be conducted using the following scripts. All benchmarks measure the build time and index size according to the hyper-parameters of each index. The results from the scripts are saved as CSV files in the results/
folder.
scripts/excute_avg.sh
: Measures the average lookup latency.scripts/excute_tail.sh
: Measures the lookup latency at 0/50/90/99/99.9/99.99%th percentiles.scripts/excute_sep.sh
: Measures the average latency of prediction and correction separately.scripts/excute_perf.sh
: Measures the perf counter (LLC, TLB, Branch, Instructions) of prediction and correction separately.scripts/excute_build.sh
: Does not perform lookups.
scripts/datasets_list.txt
: List of all available datasets.scripts/datasets_run.txt
: List of datasets to be run by the benchmark script in section 3.1.- Modify
scripts/datasets_run.txt
to change the datasets for benchmarking.
- Benchmarks can be performed by setting each index using the templates in the
benchmarks/
folder. This method of using templates is inherited from SOSD to avoid accidentally measuring vtable lookup times. However, this can lead to long benchmark build times. - The
benchmarks/
folder contains parameters used in the paper's experiments. To avoid unnecessary long build times by compiling unnecessary templates, conditional compilation directives (#ifdef
,#endif
) were used to restrict compilation to only the required templates. β οΈ Note: When changing conditional compilation directives (#ifdef
,#endif
) for a build, please reset the macro options stored in the CMake cache (rm -rf build/CMakeCache.txt build/CMakeFiles/
). Otherwise, previously used conditional compilation directives may be included in the build.
- If a user wants to perform a benchmark with newly defined parameters, they config parameters
in the section defined by
#ifdef USER
in the templates in thebenchmarks/
folder, compile withscripts/prepare.sh
, and then run the benchmark execution scripts described above 3.1. - Parameter Description for Each Index Template
// Parameters that can be modified in the template example code below are marked with ''.
// Refer to sections 2.2, 4.1, and Table 1 of the paper for a description of each parameter.
// binary search (no parameter)
benchmark.template Run<BinarySearch<uint64_t>>();
// traditional indexes
benchmark.template Run<ARTPrimaryLB<'sampling interval (I)'>>();
benchmark.template Run<STXBTree<uint64_t, 'sampling interval (I)'>>();
benchmark.template Run<InterpolationBTree<uint64_t, 'sampling interval (I)'>>();
// learned & histogram indexes
benchmark.template Run<sRadixTable<uint64_t, 'radix bits (r)', 'sampling interval (I)'>>();
benchmark.template Run<
sRMICppRobust<uint64_t, srmi::LinearSpline, srmi::LinearRegression,
srmi::sRmiRobust, '# of segments (branching factor, b)', 0, 1, 'sampling interval (I)'>>();
// Since 'πΏ(= π β πΌ + 1) β₯ 0', it must hold that 'πΌ β€ π + 1'. (Theorem 3.1 / 3.2)
benchmark.template Run<sCHT<uint64_t, '# of bins (2^r)', 'error bound (π)', 'sampling interval (I)'>>();
benchmark.template Run<sRS<uint64_t, 'radix bits (r)', 'error bound (π)', 'sampling interval (I)'>>();
benchmark.template Run<sPGM<uint64_t, '(bottom) error bound (π_b)', '(bottom) sampling interval (I)',
'(upper) error bound (π_u)', '(upper) sampling interval (I)'>>();
For reproduction, please refer to reproduce.md file.
We have developed the πΏ BASIL based on various previous benchmarks, open-source projects, and papers. We thank the researchers for their valuable contributions.
- Kipf, Andreas, et al. "SOSD: A benchmark for learned indexes." (MLSys@NeurIPS '19)
- Marcus, Ryan, et al. "Benchmarking learned indexes." (VLDB '20)
- Wongkham, Chaichon, et al. "Are updatable learned indexes ready?." (VLDB '22)
- Kraska, Tim, et al. "The case for learned index structures." (SIGMOD '18)
- Marcus, Ryan, et al. "Cdfshop: Exploring and optimizing learned index structures." (SIGMOD '20)
- Maltry, Marcel, et al. "A critical analysis of recursive model indexes." (VLDB '22)
- Ferragina, Paolo, et al. "The PGM-index: a fully-dynamic compressed learned index with provable worst-case bounds." (VLDB '20)
- Kipf, Andreas, et al. "RadixSpline: a single-pass learned index." (aiDM@SIGMOD '20)
- Crotty, Andrew. "Hist-Tree: Those Who Ignore It Are Doomed to Learn." (CIDR '21)
- Stoian, Mihail, et al. "Towards Practical Learned Indexing." (AIDB@VLDB '21)
@article{choi2024can,
title={Can Learned Indexes be Built Efficiently? A Deep Dive into Sampling Trade-offs},
author={Choi, Minguk and Yoo, Seehwan and Choi, Jongmoo},
journal={Proceedings of the ACM on Management of Data},
volume={2},
number={3},
pages={1--25},
year={2024},
publisher={ACM New York, NY, USA}
}