FDBKeeper: Enabling Scalable Coordination Services for Metadata Management using Distributed Key-Value Databases
Welcome to FDBKeeper, a scalable coordination service using FoundationDB. We built on top of the ClickHouse source code repository. This is the code repo for the paper "FDBKeeper: Enabling Scalable Coordination Services for Metadata Management using Distributed Key-Value Databases". The experimental evaluation code is available at FDBKeeper-Evaluation.
We recommend using Ubuntu 22.04.
- Compiling and installing FDBKeeper from source
sudo apt-get update
sudo apt-get install git cmake ccache python3 ninja-build nasm yasm gawk lsb-release wget software-properties-common gnupg
git clone --recursive https://github.com/DASE-iDDS/FDBKeeper
mkdir build
cmake -S . -B build
cmake --build build
- Installing FoundationDB from binary
Please see the downloads page for a list of available packages.
- src (Core Modification)
- src/Common/FoundationDB
- src/Interpreters/Context.cpp
- programs
- programs/keeper-client/KeeperClient.cpp
- programs/keeper-client/Commands.cpp
- programs/keeper/CMakeLists.txt
- programs/server/Server.cpp
- CMakeLists.txt adds FDB compilation options
- contrib/fdb-c-cmake
- tests
- tests/clickhouse-test
- tests/config/config.d/fdbkeeper.xml
- tests/config/install.sh
- tests/integration/
- tests/queries
- utils
- utils/keeper-bench
- utils/check-style
If there are any questions, please feel free to propose new features by opening an issue or contact with the author: Jun-Peng Zhu([email protected]). Enjoy the code.