The evaluation benchmark of
The dependency information for the benchmark setup and index compilation is located in scripts/install.sh
It includes CMake, YCSB, maven and java (for building YCSB), memory allocator, intel TBB, papi, etc.
Scripts to generate YCSB-Integer, YCSB-Email workloads are written in scripts/generate_all_workloads.sh
.
The script receives a directory path as a parameter where those workloads are stored.
Time-series workload uses timestamp keys that are generated with rdtsc()
instruction inside the benchmark.
./scripts/generate_all_workloads.sh ${workload_directory_path}
include/
: includes a warpper for indexes and defines structures, flags, and options used in the benchmarksrc/
: includes benchmark implementationsworkloads/
: includes source codes to generate workloads for YCSB-Integer and YCSB-Emailindex/
: includes the evaluated indexesscripts/
: includes scripts to run experimentsadms/
: includes a benchmark used in a previous study of index locality
This repository includes various in-memory index types such as tries, B+-trees, hybrid structures, and a hash table.
- Tries include Adaptive Radix Tree (ART), and Height Optimized Tree (HOT).
- B+-trees include OpenBw-tree, top-down latching B+-tree, and Blink-tree.
- Hybrid structures include Masstree, and
$B^{link}$ -hash. - Hash table includes cuckoo hashing (libcuckoo).
Some indexes such as
# pwd = Blink-hsah/
## $B^{link}$-hash
cd index/blink-hash
mkdir build && cd build
cmake .. && make -j
cd index/blink-hash-str
mkdir build && cd build
cmake .. && make -j
## Masstree
cd index/Masstree
./compile.sh
## HOT
cd index/HOT
mkdir build && cd build
cmake .. && make -j
## Benchmark
mkdir obj bin
make -j