Sign inSign up

risingwavelabs/risingwave

By risingwavelabs

Updated about 15 hours ago

A database that allows you to process, analyze, and manage streaming data with Postgres-style SQL

Image
Integration & delivery
Databases & storage
0

500K+

risingwavelabs/risingwave repository overview

This repository hosts Docker images of RisingWave. RisingWave is a Postgres-compatible streaming database engineered to provide the simplest and most cost-efficient approach for processing, analyzing, and managing real-time event streaming data.

Docker images of RisingWave are intended for local deployments and/or quick testing.

For extensive testing, please consider starting RisingWave via Docker Compose.

For production deployments, please consider RisingWave Cloud, our fully managed service, or deploying on Kubernetes using the Operator or Helm Chart.

Usage

Running a RisingWave Docker image as described below will start RisingWave in the standalone mode (as a single process). By default, data is stored in the file system and the metadata is stored in the embedded SQLite database. You can customize the settings based on the information in Configure RisingWave standalone mode.

Run the latest version of RisingWave:

docker run -it --pull=always -p 4566:4566 -p 5691:5691 risingwavelabs/risingwave:latest single_node

If you intend to run a particular version, replace "latest" with the actual version number, for example, "v1.8.0".

When the service is started, the SQL interface will be available on port 4566 and the dashboard will be available on port 5691. You can view the running metrics of RisingWave at http://127.0.0.1:5691/.

Connect to RisingWave via psql:

psql -h localhost -p 4566 -d dev -U root

To learn more about RisingWave, check out the documentation.

Tag summary

Content type

Image

Digest

sha256:461fd2b0e

Size

2.3 GB

Last updated

1 day ago

docker pull risingwavelabs/risingwave