This repository accompanies our SIGMOD 2022 paper which proposes a systematic way to evaluate HTAP databases:
HATtrick is implemented in C++ and uses ODBC for accessing a database. The codebase supports benchmarking for Postgres, TiDB and MySQL. You canfind instructions on how to install Postgres here, TiDB here and MySQL here. To build the project, run make all
from the top-level directory. To run an experiment you need first to generate data, second to load the data in the database and finally compute the frontier and the freshness of your database system. You can examine the options and their parameters by running ./HATtrickBench --help
.
./HATtrickBench -gen -pa <path> -d <d>
./HATtrickBench -init -dsn <dsn> -usr <user> -pwd <password> -pa <path> -db <database>
./HATtrickBench -frontier -dsn <dsn> -usr <user> -pwd <password> -wd <wd> -td <td> -db <database> -t <t>
You can use the Results.ipynb
notebook to visualize your results after the execution of the benchmark.