-
Notifications
You must be signed in to change notification settings - Fork 594
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add a docker compose file for standalone mode (#13233)
- v2.1.0
- v2.1.0-rc.2
- v2.1.0-rc.1
- v2.0.5
- v2.0.4
- v2.0.3
- v2.0.2
- v2.0.1
- v2.0.0-rc.1
- v2.0.0-jw-test
- v1.10.2
- v1.10.1
- v1.10.0
- v1.10.0-rc.3
- v1.10.0-rc.2
- v1.10.0-rc.1
- v1.9.2
- v1.9.1
- v1.9.1-rc.2
- v1.9.1-rc.1
- v1.9.0
- v1.8.2
- v1.8.1
- v1.8.0
- v1.7.4
- v1.7.3
- v1.7.2
- v1.7.1
- v1.7.0
- v1.7.0-standalone
- v1.7.0-single-node-2
- v1.7.0-single-node
- v1.6.1
- v1.6.0
- v1.5.4
- v1.5.3
- v1.5.2
- v1.5.1
- v1.5.0
Showing
1 changed file
with
270 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,270 @@ | ||
--- | ||
version: "3" | ||
x-image: &image | ||
image: ${RW_IMAGE:-risingwavelabs/risingwave:v1.3.0} | ||
services: | ||
risingwave-standalone: | ||
<<: *image | ||
command: "standalone --meta-opts=\" \ | ||
--listen-addr 0.0.0.0:5690 \ | ||
--advertise-addr 0.0.0.0:5690 \ | ||
--dashboard-host 0.0.0.0:5691 \ | ||
--prometheus-host 0.0.0.0:1250 \ | ||
--connector-rpc-endpoint 0.0.0.0:50051 \ | ||
--backend etcd \ | ||
--etcd-endpoints etcd-0:2388 \ | ||
--state-store hummock+minio://hummockadmin:hummockadmin@minio-0:9301/hummock001 \ | ||
--data-directory hummock_001 \ | ||
--config-path /risingwave.toml \ | ||
--dashboard-ui-path ${RW_PREFIX}/ui\" \ | ||
--compute-opts=\" \ | ||
--config-path /risingwave.toml \ | ||
--listen-addr 0.0.0.0:5688 \ | ||
--prometheus-listener-addr 0.0.0.0:1222 \ | ||
--advertise-addr 0.0.0.0:5688 \ | ||
--async-stack-trace verbose \ | ||
--connector-rpc-endpoint 0.0.0.0:50051 \ | ||
#--parallelism 4 \ | ||
#--total-memory-bytes 8589934592 \ | ||
--role both \ | ||
--meta-address http://0.0.0.0:5690\" \ | ||
--frontend-opts=\" \ | ||
--config-path /risingwave.toml \ | ||
--listen-addr 0.0.0.0:4566 \ | ||
--advertise-addr 0.0.0.0:4566 \ | ||
--prometheus-listener-addr 0.0.0.0:2222 \ | ||
--health-check-listener-addr 0.0.0.0:6786 \ | ||
--meta-addr http://0.0.0.0:5690\" \ | ||
--compactor-opts=\" \ | ||
--listen-addr 0.0.0.0:6660 \ | ||
--prometheus-listener-addr 0.0.0.0:1260 \ | ||
--advertise-addr 0.0.0.0:6660 \ | ||
--meta-address http://0.0.0.0:5690\"" | ||
expose: | ||
- "6660" | ||
- "1260" | ||
- "4566" | ||
- "5688" | ||
- "1222" | ||
- "5690" | ||
- "1250" | ||
- "5691" | ||
ports: | ||
- "4566:4566" | ||
- "5690:5690" | ||
- "5691:5691" | ||
depends_on: | ||
- etcd-0 | ||
- minio-0 | ||
volumes: | ||
- "./risingwave.toml:/risingwave.toml" | ||
environment: | ||
RUST_BACKTRACE: "1" | ||
# If ENABLE_TELEMETRY is not set, telemetry will start by default | ||
ENABLE_TELEMETRY: ${ENABLE_TELEMETRY:-true} | ||
container_name: risingwave-standalone | ||
healthcheck: | ||
test: | ||
- CMD-SHELL | ||
- bash -c 'printf \"GET / HTTP/1.1\n\n\" > /dev/tcp/127.0.0.1/6660; exit $$?;' | ||
- bash -c 'printf \"GET / HTTP/1.1\n\n\" > /dev/tcp/127.0.0.1/5688; exit $$?;' | ||
- bash -c 'printf \"GET / HTTP/1.1\n\n\" > /dev/tcp/127.0.0.1/4566; exit $$?;' | ||
- bash -c 'printf \"GET / HTTP/1.1\n\n\" > /dev/tcp/127.0.0.1/5690; exit $$?;' | ||
interval: 1s | ||
timeout: 5s | ||
|
||
etcd-0: | ||
image: "quay.io/coreos/etcd:v3.5.7" | ||
command: | ||
- /usr/local/bin/etcd | ||
- "--listen-client-urls" | ||
- "http://0.0.0.0:2388" | ||
- "--advertise-client-urls" | ||
- "http://etcd-0:2388" | ||
- "--listen-peer-urls" | ||
- "http://0.0.0.0:2389" | ||
- "--initial-advertise-peer-urls" | ||
- "http://etcd-0:2389" | ||
- "--listen-metrics-urls" | ||
- "http://0.0.0.0:2379" | ||
- "--name" | ||
- risedev-meta | ||
- "--max-txn-ops" | ||
- "999999" | ||
- "--max-request-bytes" | ||
- "10485760" | ||
- "--auto-compaction-mode" | ||
- periodic | ||
- "--auto-compaction-retention" | ||
- 1m | ||
- "--snapshot-count" | ||
- "10000" | ||
- "--data-dir" | ||
- /etcd-data | ||
expose: | ||
- "2388" | ||
ports: | ||
- "2388:2388" | ||
- "2389:2389" | ||
depends_on: [] | ||
volumes: | ||
- "etcd-0:/etcd-data" | ||
environment: {} | ||
container_name: etcd-0 | ||
healthcheck: | ||
test: | ||
- CMD | ||
- etcdctl | ||
- --endpoints=http://localhost:2388 | ||
- endpoint | ||
- health | ||
interval: 1s | ||
timeout: 5s | ||
retries: 5 | ||
|
||
grafana-0: | ||
image: "grafana/grafana-oss:latest" | ||
command: [] | ||
expose: | ||
- "3001" | ||
ports: | ||
- "3001:3001" | ||
depends_on: [] | ||
volumes: | ||
- "grafana-0:/var/lib/grafana" | ||
- "./grafana.ini:/etc/grafana/grafana.ini" | ||
- "./grafana-risedev-datasource.yml:/etc/grafana/provisioning/datasources/grafana-risedev-datasource.yml" | ||
- "./grafana-risedev-dashboard.yml:/etc/grafana/provisioning/dashboards/grafana-risedev-dashboard.yml" | ||
- "./dashboards:/dashboards" | ||
environment: {} | ||
container_name: grafana-0 | ||
healthcheck: | ||
test: | ||
- CMD-SHELL | ||
- bash -c 'printf \"GET / HTTP/1.1\n\n\" > /dev/tcp/127.0.0.1/3001; exit $$?;' | ||
interval: 1s | ||
timeout: 5s | ||
retries: 5 | ||
|
||
minio-0: | ||
image: "quay.io/minio/minio:latest" | ||
command: | ||
- server | ||
- "--address" | ||
- "0.0.0.0:9301" | ||
- "--console-address" | ||
- "0.0.0.0:9400" | ||
- /data | ||
expose: | ||
- "9301" | ||
- "9400" | ||
ports: | ||
- "9301:9301" | ||
- "9400:9400" | ||
depends_on: [] | ||
volumes: | ||
- "minio-0:/data" | ||
entrypoint: " | ||
/bin/sh -c ' | ||
set -e | ||
mkdir -p \"/data/hummock001\" | ||
/usr/bin/docker-entrypoint.sh \"$$0\" \"$$@\" | ||
'" | ||
environment: | ||
MINIO_CI_CD: "1" | ||
MINIO_PROMETHEUS_AUTH_TYPE: public | ||
MINIO_PROMETHEUS_URL: "http://prometheus-0:9500" | ||
MINIO_ROOT_PASSWORD: hummockadmin | ||
MINIO_ROOT_USER: hummockadmin | ||
MINIO_DOMAIN: "minio-0" | ||
container_name: minio-0 | ||
healthcheck: | ||
test: | ||
- CMD-SHELL | ||
- bash -c 'printf \"GET / HTTP/1.1\n\n\" > /dev/tcp/127.0.0.1/9301; exit $$?;' | ||
interval: 1s | ||
timeout: 5s | ||
retries: 5 | ||
|
||
prometheus-0: | ||
image: "prom/prometheus:latest" | ||
command: | ||
- "--config.file=/etc/prometheus/prometheus.yml" | ||
- "--storage.tsdb.path=/prometheus" | ||
- "--web.console.libraries=/usr/share/prometheus/console_libraries" | ||
- "--web.console.templates=/usr/share/prometheus/consoles" | ||
- "--web.listen-address=0.0.0.0:9500" | ||
- "--storage.tsdb.retention.time=30d" | ||
expose: | ||
- "9500" | ||
ports: | ||
- "9500:9500" | ||
depends_on: [] | ||
volumes: | ||
- "prometheus-0:/prometheus" | ||
- "./prometheus.yaml:/etc/prometheus/prometheus.yml" | ||
environment: {} | ||
container_name: prometheus-0 | ||
healthcheck: | ||
test: | ||
- CMD-SHELL | ||
- sh -c 'printf "GET /-/healthy HTTP/1.0\n\n" | nc localhost 9500; exit $$?;' | ||
interval: 1s | ||
timeout: 5s | ||
retries: 5 | ||
|
||
message_queue: | ||
image: "docker.vectorized.io/vectorized/redpanda:latest" | ||
command: | ||
- redpanda | ||
- start | ||
- "--smp" | ||
- "1" | ||
- "--reserve-memory" | ||
- 0M | ||
- "--memory" | ||
- 4G | ||
- "--overprovisioned" | ||
- "--node-id" | ||
- "0" | ||
- "--check=false" | ||
- "--kafka-addr" | ||
- "PLAINTEXT://0.0.0.0:29092,OUTSIDE://0.0.0.0:9092" | ||
- "--advertise-kafka-addr" | ||
- "PLAINTEXT://message_queue:29092,OUTSIDE://localhost:9092" | ||
expose: | ||
- "29092" | ||
- "9092" | ||
- "9644" | ||
ports: | ||
- "29092:29092" | ||
- "9092:9092" | ||
- "9644:9644" | ||
- "8081:8081" | ||
depends_on: [] | ||
volumes: | ||
- "message_queue:/var/lib/redpanda/data" | ||
environment: {} | ||
container_name: message_queue | ||
healthcheck: | ||
test: curl -f localhost:9644/v1/status/ready | ||
interval: 1s | ||
timeout: 5s | ||
retries: 5 | ||
volumes: | ||
etcd-0: | ||
external: false | ||
grafana-0: | ||
external: false | ||
minio-0: | ||
external: false | ||
prometheus-0: | ||
external: false | ||
message_queue: | ||
external: false | ||
|