This file contains recommendations for how to set up your local development environment.
To build the project, you need the Rust toolchain. Follow the guide here https://rustup.rs/ to setup Rust, Cargo, etc.
The project contains some Rust libraries binding to native libraries/build tools, which you'll require during the development, notably:
- Clang
- CMake
- OpenSSL
- RocksDB
- Protobuf compiler version >= 3.15
Optionally, you can install just to make use of our justfile.
To setup these on Fedora, run:
sudo dnf install clang lld lldb libcxx cmake openssl-devel rocksdb-devel protobuf-compiler protobuf-devel just liburing-devel
On MacOS, you can use homebrew
brew install cmake protobuf just
Optionally, you can install node and Java for supporting tools and examples:
brew install node openjdk
If you choose to install OpenJDK via homebrew, you'll also need to link it so that it's available through the system-level wrappers.
sudo ln -sfn /opt/homebrew/opt/openjdk/libexec/openjdk.jdk /Library/Java/JavaVirtualMachines/openjdk.jdk
In order to build the runtime on MacOS (M1) you need to export CMAKE_OSX_ARCHITECTURES="arm64"
.
This will prevent librdkafka
from building a fat binary that fails to be linked on MacOS (M1).
You can also add the following section to your ~/.cargo/config.toml
to make cargo always run with this environment variable:
[env]
# Fix architecture to arm64 to make rdkafka build. Without this env var, the
# librdkafka build script will generate a fat binary that fails to be linked
# on MacOS. See https://github.com/rust-lang/cargo/issues/8875 and
# https://github.com/rust-lang/rust/issues/50220#issuecomment-433070637 for
# more details.
CMAKE_OSX_ARCHITECTURES = "arm64"
In order to build the restate-server
binary run:
just build --bin restate-server [--release]
In order to build the restate-cli
binary run:
just build --bin restate [--release]
We recommend cargo-nextest https://nexte.st/ to run our unit tests
just test
or directly with cargo:
cargo nextest run --workspace
In order to speed up the build process, one can install the sccache which caches build artifacts of rustc
.
It is useful to enable tracing when testing the runtime. To set up the runtime to publish traces to Jaeger, refer to the observability documentation in the Restate official documentation.
To start Jaeger, run:
docker run --rm -d -p16686:16686 -p4317:4317 -e COLLECTOR_OTLP_ENABLED=true --name jaeger jaegertracing/all-in-one:latest
This section contains guides for how to set up Knative in different local setups. If your setup is missing, then please add a description for it.
If you are running Kind as your local K8s environment, then please follow this quickstart in order to install Knative.
If you are running Rancher desktop as your local K8s environment, then you have to disable Traefik first. This can be done in the Rancher desktop UI under 'Kubernetes Settings' and requires a restart of Rancher. Next you can install Knative via:
KNATIVE_VERSION=1.8.0 curl -sL https://raw.githubusercontent.com/csantanapr/knative-minikube/master/install.sh | bash
This section explains how to generate the configuration documentation and REST api documentation.
Due to intellij-rust/intellij-rust#10847, disable Rust macro expansion feature of the Rust IntelliJ plugin, as described here https://plugins.jetbrains.com/plugin/8182-rust/docs/rust-project-settings.html#general-settings.
Requirements:
To generate the JSON schema:
cargo xtask generate-config-schema > restate_config_schema.json
To generate the HTML documentation:
generate-schema-doc --minify restate_config_schema.json restate_config_doc.html
The schema can be associated to restate.yaml
in Jetbrains IDEs to enable autocompletion: https://www.jetbrains.com/help/idea/json.html#ws_json_using_schemas
Requirements:
To generate the OpenAPI file:
cargo xtask generate-rest-api-doc > openapi.json
To generate the HTML documentation:
npx @redocly/cli build-docs openapi.json
Requirements:
For performance analysis you can generate a flamegraph of the runtime binary via:
just flamegraph --bin restate-server
This command will produce a flamegraph.svg
in the current working directory when the process is stopped.
See the flamegraph documentation for more details.