2018-04-19 06:03:27 +08:00
< img alt = "FoundationDB logo" src = "documentation/FDB_logo.png?raw=true" width = "400" >
2017-05-26 04:48:44 +08:00
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.
2018-03-28 07:19:03 +08:00
2018-04-13 05:35:56 +08:00
To learn more about FoundationDB, visit [foundationdb.org ](https://www.foundationdb.org/ )
2018-03-28 07:19:03 +08:00
2018-04-13 05:35:56 +08:00
## Documentation
2018-04-14 05:52:56 +08:00
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 ](documentation/sphinx/source ).
2018-04-13 05:35:56 +08:00
## Forums
2018-04-14 05:52:56 +08:00
[The FoundationDB Forums ](https://forums.foundationdb.org/ ) 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, have established a [Code of Conduct ](CODE_OF_CONDUCT.md ) to establish what constitutes permissible modes of interaction.
2018-04-13 05:35:56 +08:00
## Contributing
2018-04-14 05:52:56 +08:00
Contributing to FoundationDB can be in contributions to the code base, 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 ](CONTRIBUTING.md ) for more specifics.
2018-04-13 05:35:56 +08:00
## Getting Started
### Binary downloads
2020-05-21 05:26:05 +08:00
Developers interested in using FoundationDB can get started by downloading and installing a binary package. Please see the [downloads page ](https://www.foundationdb.org/download/ ) for a list of available packages.
2018-04-13 05:35:56 +08:00
2018-04-19 07:03:59 +08:00
### Compiling from source
2018-04-13 05:35:56 +08:00
2019-06-13 08:39:11 +08:00
Developers on an OS for which there is no binary package, or who would like
2019-06-12 05:18:10 +08:00
to start hacking on the code, can get started by compiling from source.
2018-04-13 05:35:56 +08:00
2020-05-21 05:26:05 +08:00
The official docker image for building is `foundationdb/foundationdb-build` . It has all dependencies installed. To build outside the official docker image you'll need at least these dependencies:
1. Install cmake Version 3.13 or higher [CMake ](https://cmake.org/ )
1. Install [Mono ](http://www.mono-project.com/download/stable/ )
1. Install [Ninja ](https://ninja-build.org/ ) (optional, but recommended)
2019-02-06 11:38:04 +08:00
2020-04-08 02:48:10 +08:00
If compiling for local development, please set `-DUSE_WERROR=ON` in
cmake. Our CI compiles with `-Werror` on, so this way you'll find out about
2020-02-04 01:19:02 +08:00
compiler warnings that break the build earlier.
2020-05-21 05:26:05 +08:00
Once you have your dependencies, you can run cmake and then build:
2019-02-28 08:54:41 +08:00
2019-02-07 12:42:13 +08:00
1. Check out this repository.
1. Create a build directory (you can have the build directory anywhere you
2020-05-21 05:26:05 +08:00
like). There is currently a directory in the source tree called build, but you should not use it. See [#3098 ](https://github.com/apple/foundationdb/issues/3098 )
1. `cd <PATH_TO_BUILD_DIRECTORY>`
1. `cmake -G Ninja <PATH_TO_FOUNDATIONDB_DIRECTORY>`
1. `ninja # If this crashes it probably ran out of memory. Try ninja -j1`
2019-02-07 12:42:13 +08:00
2019-02-08 16:03:16 +08:00
### Language Bindings
The language bindings that are supported by cmake will have a corresponding
`README.md` file in the corresponding `bindings/lang` directory.
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.
2019-06-12 05:18:10 +08:00
### Generating `compile_commands.json`
2019-02-07 12:42:13 +08:00
2019-02-15 08:37:48 +08:00
CMake can build a compilation database for you. However, the default generated
2019-02-07 12:42:13 +08:00
one is not too useful as it operates on the generated files. When running make,
the build system will create another `compile_commands.json` file in the source
directory. This can than be used for tools like
[CCLS ](https://github.com/MaskRay/ccls ),
[CQuery ](https://github.com/cquery-project/cquery ), etc. This way you can get
code-completion and code navigation in flow. It is not yet perfect (it will show
2019-02-15 08:37:48 +08:00
a few errors) but we are constantly working on improving the development experience.
2019-02-07 12:42:13 +08:00
2019-06-12 05:18:10 +08:00
CMake will not produce a `compile_commands.json` , you must pass
`-DCMAKE_EXPORT_COMPILE_COMMANDS=ON` . This also enables the target
`processed_compile_commands` , which rewrites `compile_commands.json` to
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 building inside of the `foundationdb/foundationdb-build` docker
image, the resulting paths will still be incorrect and require manual fixing.
One will wish to re-run `cmake` with `-DCMAKE_EXPORT_COMPILE_COMMANDS=OFF` to
prevent it from reverting the manual changes.
2019-02-10 06:33:36 +08:00
### Using IDEs
2019-06-12 05:18:10 +08:00
CMake has built in support for a number of popular IDEs. However, because flow
2019-02-10 06:33:36 +08:00
files are precompiled with the actor compiler, an IDE will not be very useful as
a user will only be presented with the generated code - which is not what she
wants to edit and get IDE features for.
2019-02-15 08:37:48 +08:00
The good news is, that it is possible to generate project files for editing
2019-06-12 05:18:10 +08:00
flow with a supported IDE. There is a CMake option called `OPEN_FOR_IDE` which
2019-02-10 06:33:36 +08:00
will generate a project which can be opened in an IDE for editing. You won't be
able to build this project, but you will be able to edit the files and get most
edit and navigation features your IDE supports.
For example, if you want to use XCode to make changes to FoundationDB you can
create a XCode-project with the following command:
2019-02-28 08:54:41 +08:00
```sh
2019-02-10 06:33:36 +08:00
cmake -G Xcode -DOPEN_FOR_IDE=ON < FDB_SOURCE_DIRECTORY >
```
2020-05-21 05:26:05 +08:00
You should create a second build-directory which you will use for building and debugging.
2019-02-10 06:33:36 +08:00
2020-05-01 03:17:23 +08:00
#### FreeBSD
1. Check out this repo on your server.
1. Install compile-time dependencies from ports.
1. (Optional) Use tmpfs & ccache for significantly faster repeat builds
1. (Optional) Install a [JDK ](https://www.freshports.org/java/openjdk8/ )
for Java Bindings. FoundationDB currently builds with Java 8.
1. Navigate to the directory where you checked out the foundationdb
repo.
1. Build from source.
```shell
sudo pkg install -r FreeBSD \
shells/bash devel/cmake devel/ninja devel/ccache \
lang/mono lang/python3 \
devel/boost-libs devel/libeio \
security/openssl
mkdir .build & & cd .build
cmake -G Ninja \
-DUSE_CCACHE=on \
-DDISABLE_TLS=off \
-DUSE_DTRACE=off \
..
ninja -j 10
# run fast tests
ctest -L fast
# run all tests
ctest --output-on-failure -v
```
2019-02-07 12:42:13 +08:00
### Linux
2019-06-12 05:18:10 +08:00
There are no special requirements for Linux. A docker image can be pulled from
`foundationdb/foundationdb-build` that has all of FoundationDB's dependencies
pre-installed, and is what the CI uses to build and test PRs.
2019-02-07 12:42:13 +08:00
2019-02-08 08:35:52 +08:00
```
2020-05-21 05:26:05 +08:00
cmake -G Ninja < FDB_SOURCE_DIR >
2020-04-08 02:48:10 +08:00
ninja
2020-02-21 04:32:00 +08:00
cpack -G DEB
2019-02-08 08:35:52 +08:00
```
For RPM simply replace `DEB` with `RPM` .
2019-02-07 12:42:13 +08:00
### MacOS
2020-05-21 05:26:05 +08:00
The build under MacOS will work the same way as on Linux. To get boost and ninja you can use [Homebrew ](https://brew.sh/ ).
2019-02-07 12:42:13 +08:00
2019-02-28 08:54:41 +08:00
```sh
2020-05-21 05:26:05 +08:00
cmake -G Ninja < PATH_TO_FOUNDATIONDB_SOURCE >
2019-02-07 12:42:13 +08:00
```
2019-02-06 11:38:04 +08:00
2020-05-21 05:26:05 +08:00
To generate a installable package, you can use cpack:
2019-02-08 08:35:52 +08:00
2019-02-28 08:54:41 +08:00
```sh
2020-04-08 02:48:10 +08:00
ninja
2020-02-21 04:32:00 +08:00
cpack -G productbuild
2019-02-08 08:35:52 +08:00
```
2019-02-06 11:38:04 +08:00
2019-02-07 12:42:13 +08:00
### Windows
Under Windows, the build instructions are very similar, with the main difference
that Visual Studio is used to compile.
2019-02-06 11:38:04 +08:00
1. Install Visual Studio 2017 (Community Edition is tested)
2019-02-28 08:54:41 +08:00
1. Install cmake Version 3.12 or higher [CMake ](https://cmake.org/ )
2020-05-21 05:26:05 +08:00
1. Download version 1.72 of [Boost ](https://dl.bintray.com/boostorg/release/1.72.0/source/boost_1_72_0.tar.bz2 )
2019-02-07 12:42:13 +08:00
1. Unpack boost (you don't need to compile it)
2020-05-21 05:26:05 +08:00
1. Install [Mono ](http://www.mono-project.com/download/stable/ )
1. (Optional) Install a [JDK ](http://www.oracle.com/technetwork/java/javase/downloads/index.html ). FoundationDB currently builds with Java 8
2019-02-28 08:54:41 +08:00
1. Set `JAVA_HOME` to the unpacked location and JAVA_COMPILE to
`$JAVA_HOME/bin/javac` .
2020-05-21 05:26:05 +08:00
1. Install [Python ](https://www.python.org/downloads/ ) if it is not already installed by Visual Studio
2019-02-08 06:19:36 +08:00
1. (Optional) Install [WIX ](http://wixtoolset.org/ ). Without it Visual Studio
2020-05-21 05:26:05 +08:00
won't build the Windows installer
2019-02-07 12:42:13 +08:00
1. Create a build directory (you can have the build directory anywhere you
like): `mkdir build`
1. `cd build`
1. `cmake -G "Visual Studio 15 2017 Win64" -DBOOST_ROOT=<PATH_TO_BOOST> <PATH_TO_FOUNDATIONDB_DIRECTORY>`
1. This should succeed. In which case you can build using msbuild:
2019-02-28 08:54:41 +08:00
`msbuild /p:Configuration=Release foundationdb.sln` . You can also open the resulting
2019-02-07 12:42:13 +08:00
solution in Visual Studio and compile from there. However, be aware that
2019-02-15 08:37:48 +08:00
using Visual Studio for development is currently not supported as Visual
2019-02-28 08:54:41 +08:00
Studio will only know about the generated files. `msbuild` is located at
`c:\Program Files (x86)\MSBuild\14.0\Bin\MSBuild.exe` for Visual Studio 15.
2019-02-06 11:38:04 +08:00
2019-02-08 06:19:36 +08:00
If you installed WIX before running `cmake` you should find the
`FDBInstaller.msi` in your build directory under `packaging/msi` .
2019-06-12 05:18:10 +08:00
2020-05-21 05:26:05 +08:00
TODO: Re-add instructions for TLS support [#3022 ](https://github.com/apple/foundationdb/issues/3022 )