Documentation Index
Fetch the complete documentation index at: https://docs.risingwave.com/llms.txt
Use this file to discover all available pages before exploring further.
Prerequisites
- Ensure you have Helm 3.7 + installed in your environment. For details about how to install Helm, see the Helm documentation.
- Ensure you have Kubernetes 1.24 or higher installed in your environment.
- Ensure you allocate enough resources for the deployment. For details, see Hardware requirements.
Step 1: Start Kubernetes
Start a Kubernetes cluster. For details about starting a Kubernetes cluster, see Kubernetes’ Getting started guide.Step 2: Start RisingWave
Now start a RisingWave cluster with Helm.Update your Helm chart repositories to ensure that you are using the RisingWave Helm chart:If you are using AWS EKS, you also need to update the local configuration for kubectl and Helm to access your EKS cluster:
Create a RisingWave namespace. We recommend creating a dedicated namespace for RisingWave resources.
Customize your configuration for the RisingWave deployment by editing the values.yaml file.
- Customize meta store: The meta store in RisingWave holds metadata for cluster operations. See Configuration for all the available options and Examples for detailed usage of meta stores.
If using PostgreSQL as the meta store, make sure the PostgreSQL user configured in your Helm values has at least
USAGEpermission on thepublicschema. - Customize state store: The state store in RisingWave serves as a fault-tolerant storage system for preserving system state. See Configuration for all the available options and Examples for detailed usage of state stores.
- Bundled PostgreSQL and MinIO: If you want to use
PostgreSQLas the meta store andMinIOas the state store, the Helm chart for RisingWave offers the option to bundle them together. This allows for a quick and easy setup of the Helm chart. See Configuration for more details. To enable this feature, settags.bundle=true.Before using the bundledPostgreSQLandMinIO, and any local stores, ensure that you have implemented the Dynamic Volume Provisioning.
Install the latest RisingWave Helm chart:Where You may get an output message like this:
<my-risingwave> is the release name you choose to use for your RisingWave deployment. This command will install the latest stable version of RisingWave.
If you want to install a particular version, you can specify the version via the image-tag attribute. Remember to replace <version_number> with the desired version, for example v1.7.0.Step 3: Access RisingWave
By default, the RisingWave Helm Chart will deploy a ClusterIP service that enables the cluster-local communication. Once deployed, you can forward your local machine’s port4567 to the service’s port via:
Step 4: Monitor performance
You can monitor the RisingWave cluster using the monitoring stack. For details, see Monitoring a RisingWave cluster.Optional: Resize a node
By editing the configurations in values.yaml, you can resize a worker node. The Compactor Node configurations are in thecompactorComponent section. Configurations for the Meta Node and Serving / Streaming Node are in metaComponent and computeComponent sections respectively. See Customize pods of different components for details.
Setting requests equal to limits places pods in the Kubernetes Guaranteed QoS class, which provides:
- Predictable scheduling: Kubernetes can more accurately schedule pods on nodes with sufficient resources.
- Eviction protection: Guaranteed pods are the last to be evicted under resource pressure.
- Consistent performance: More predictable CPU and memory availability for RisingWave pods.
- Resource isolation: Better protection from noisy neighbors in multi-tenant clusters.
Recommended minimum sizes
RisingWave is memory-intensive. When sizing components, use a 1:4 CPU:memory ratio (for example, 1 CPU core to 4 GiB memory). The recommended minimum sizes for each component in distributed mode are:| Component | Minimum resources |
|---|---|
| Compute (Streaming / Serving Node) | 4 CPU cores, 16 GiB memory |
| Compactor Node | 2 CPU cores, 8 GiB memory |
| Meta Node | 1 CPU core, 4 GiB memory |
| Frontend Node | 1 CPU core, 4 GiB memory |
Example configuration
The following example shows how to set equalrequests and limits with a 1:4 CPU:memory ratio: