The below removed encryptModes but missed two tests committed around same time. (#12678)
commit c62bb6bf3817da2a3659459b4bcf44528aae65c2 Author: gxglass gxglassgithub@gmail.com Date: Wed Feb 4 16:02:06 2026 -0800
Delete encryption at rest (#12667)Co-authored-by: michael stack stack@duboce.com
FoundationDB is a distributed database designed to handle large volumes of structured data across clusters of commodity servers. It organizes data as an ordered key-value store and employs ACID transactions for all operations. It is especially well-suited for read/write workloads, but also has excellent performance for write-intensive workloads. Users interact with the database using API language binding.
To learn more about FoundationDB, visit foundationdb.org
Documentation
Documentation can be found online at https://apple.github.io/foundationdb/. The documentation covers details of API usage, background information on design philosophy, and extensive usage examples. Docs are built from the source in this repo.
Forums
The FoundationDB Forums are the home for most of the discussion and communication about the FoundationDB project. We welcome your participation! We want FoundationDB to be a great project to be a part of, and as part of that, we have established a Code of Conduct to define what constitutes permissible modes of interaction.
Contributing
Contributing to FoundationDB can be in contributions to the codebase, sharing your experience and insights in the community on the Forums, or contributing to projects that make use of FoundationDB. Please see the contributing guide for more specifics.
Getting Started
Latest Stable Releases
The latest stable releases are (were) versions that are recommended for production use, which have been extensively validated via simulation and real cluster tests and used in our production environment.
Supportedbranches are those we actively maintain and will publish new patch releases.Bug fixesare branches where we still accept bug fixes, but may not publish newer patch releases. The community can build the latest release binaries if needed and is encouraged to upgrade to theSupportedbranches.Experimentalbranches are those used for internal feature testing. They are not recommended for production use.Unsupportedbranches are those that will no longer receive any updates.If you are running on old production releases, we recommend always upgrading to the next major release’s latest version, and then continuing to the next major version, e.g., 6.2.X -> 6.3.25 -> 7.1.57 -> 7.3.69. These upgrade paths have been well tested in production (skipping a major release, not marked as
Experimental, for an upgrade is only tested in simulation).Binary Downloads
Developers interested in using FoundationDB can get started by downloading and installing a binary package. Please see the downloads page for a list of available packages.
Compiling from source
Developers on an OS for which there is no binary package, or who would like to start hacking on the code, can get started by compiling from source.
NOTE: FoundationDB has a lot of dependencies. The Docker container listed below tracks them and is what we use internally and is the recommended method of building FDB.
Build Using the Official Docker Image
The official Docker image for building is
foundationdb/build, which includes all necessary dependencies. The Docker image definitions used by FoundationDB team members can be found in the dedicated repository.To build FoundationDB with the clang toolchain,
To use GCC, a non-default version is necessary. The following modifies environment variables (PATH,LD_LIBRARY_PATH, etc) to pick up the right GCC version:
Slightly more elaborate compile commands can be found in the shell aliases defined in
/root/.bashrcin the container image.Build Locally
To build outside of the official Docker image, you’ll need at least these dependencies:
This list is likely to be incomplete. Refer to the rockylinux9 Dockerfile in the
fdb-build-supportrepo linked above for reference material on specific packages and versions that are likely to be required.If compiling for local development, please set
-DUSE_WERROR=ONin CMake. Our CI compiles with-Werroron, so this way you’ll find out about compiler warnings that break the build earlier.Once you have your dependencies, you can run
cmakeand then build:cd <FDB_BUILD_DIR>cmake -G Ninja <FDB_SOURCE_DIR>ninjaBuilding FoundationDB requires at least 8GB of memory. More memory is needed when building in parallel. If the computer freezes or crashes, consider disabling parallelized build using
ninja -j1.FreeBSD
Check out this repo on your server.
Install compile-time dependencies from ports.
(Optional) Use tmpfs & ccache for significantly faster repeat builds
(Optional) Install a JDK for Java Bindings. FoundationDB currently builds with Java 8.
Navigate to the directory where you checked out the FoundationDB repository.
Build from source.
macOS
The build under macOS will work the same way as on Linux. Homebrew can be used to install the
boostlibrary and theninjabuild tool.To generate an installable package,
Windows
Under Windows, only Visual Studio with ClangCl is supported
-DBOOST_ROOT=<PATH_TO_BOOST>withcmakeif unpacked elsewheremkdir build && cd buildcmake -G "Visual Studio 16 2019" -A x64 -T ClangCl <FDB_SOURCE_DIR>msbuild /p:Configuration=Release foundationdb.sln/p:UseMultiToolTask=trueand/p:CL_MPCount=<NUMBER_OF_PARALLEL_JOBS>Language Bindings
The language bindings that CMake supports will have a corresponding
README.mdfile in thebindings/langdirectory corresponding to each language.Generally, CMake will build all language bindings for which it can find all necessary dependencies. After each successful CMake run, CMake will tell you which language bindings it is going to build.
Generating
compile_commands.jsonCMake can build a compilation database for you. However, the default generated one is not too useful as it operates on the generated files. When running
ninja, the build system creates anothercompile_commands.jsonfile in the source directory. This can then be used for tools such as CCLS and CQuery, among others. This way, you can get code completion and code navigation in flow. It is not yet perfect (it will show a few errors), but we are continually working to improve the development experience.CMake will not produce a
compile_commands.jsonby default; you must pass-DCMAKE_EXPORT_COMPILE_COMMANDS=ON. This also enables the targetprocessed_compile_commands, which rewritescompile_commands.jsonto describe the actor compiler source file, not the post-processed output files, and places the output file in the source directory. This file should then be picked up automatically by any tooling.Note that if the building is done inside the
foundationdb/buildDocker image, the resulting paths will still be incorrect and require manual fixing. One will wish to re-runcmakewith-DCMAKE_EXPORT_COMPILE_COMMANDS=OFFto prevent it from reverting the manual changes.Using IDEs
CMake provides built-in support for several popular IDEs. However, most FoundationDB files are written in the
flowlanguage, which is an extension of the C++ programming language, for coroutine support (Note that when FoundationDB was being developed, C++20 was not available). Theflowlanguage will be transpiled into C++ code usingactorcompiler, while preventing most IDEs from recognizingflow-specific syntax.It is possible to generate project files for editing
flowwith a supported IDE. There is a CMake option calledOPEN_FOR_IDE, which creates a project that can be opened in an IDE for editing. This project cannot be built, but you will be able to edit the files and utilize most of the editing and navigation features that your IDE supports.For example, if you want to use Xcode to make changes to FoundationDB, you can create an Xcode project with the following command:
A second build directory with the
OPEN_FOR_IDEflag off can be created for building and debugging purposes.