Documentation
RisingWave

RisingWave

RisingWave (opens in a new tab) is a distributed streaming database that enables processing and management of real-time data with a Postgres-style SQL syntax. It is available as an open-source edition (opens in a new tab) and a managed cloud service.

Prerequisites

Setup

RisingWave provides a Postgres-compatible interface. You can connect Cube to RisingWave as if it's a regular Postgres data source.

Manual

Add the following to a .env file in your Cube project:

CUBEJS_DB_TYPE=postgres
CUBEJS_DB_HOST=risingwave_host
CUBEJS_DB_PORT=risingwave_port
CUBEJS_DB_NAME=risingwave_database
CUBEJS_DB_USER=risingwave_user
CUBEJS_DB_PASS=risingwave_password

Environment variables

Environment VariableDescriptionPossible ValuesRequired
CUBEJS_DB_HOSTThe host URL for a databaseA valid database host URL
CUBEJS_DB_PORTThe port for the database connectionA valid port number
CUBEJS_DB_NAMEThe name of the database to connect toA valid database name
CUBEJS_DB_USERThe username used to connect to the databaseA valid database username
CUBEJS_DB_PASSThe password used to connect to the databaseA valid database password
CUBEJS_DB_SSLIf true, enables SSL encryption (opens in a new tab) for database connections from Cubetrue, false
CUBEJS_CONCURRENCYThe number of concurrent connections each queue has to the database. Default is 2A valid number
CUBEJS_DB_MAX_POOLThe maximum number of concurrent database connections to pool. Default is 8A valid number

Pre-aggregation feature support

count_distinct_approx

Measures of type count_distinct_approx can not be used in pre-aggregations when using RisingWave as a source database.

Pre-aggregation build strategies

To learn more about pre-aggregation build strategies, head here.

FeatureWorks with read-only mode?Is default?
Simple
Batching--
Export bucket--

By default, RisingWave uses a simple strategy to build pre-aggregations.

Simple

No extra configuration is required to configure simple pre-aggregation builds for RisingWave.

Batching

RisingWave does not support batching.

Export bucket

RisingWave does not support export buckets.