Skip to content

Commit

Permalink
chore: use Postgres meta backend for risedev d full (#18560)
Browse files Browse the repository at this point in the history
  • Loading branch information
fuyufjh authored Sep 17, 2024
1 parent 604fdc8 commit ee62b43
Showing 1 changed file with 20 additions and 5 deletions.
25 changes: 20 additions & 5 deletions risedev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,25 @@ profile:
# - use: aws-s3
# bucket: test-bucket

# if you want to enable etcd backend, uncomment the following lines.
# By default, the meta-backend is sqlite.
# To enable etcd backend, uncomment the following lines and set the meta-backend to etcd in 'meta-node'
# - use: etcd
# unsafe-no-fsync: true

# To enable postgres backend, uncomment the following lines and set the meta-backend to postgres in 'meta-node'
# - use: postgres
# port: 8432
# user: postgres
# database: metadata

# If you want to enable metrics or tracing, uncomment the following lines.
# - use: prometheus # metrics
# - use: tempo # tracing
# - use: grafana # visualization

- use: meta-node
# - meta-backend: postgres
# - meta-backend: etcd
- use: compute-node
- use: frontend

Expand Down Expand Up @@ -107,9 +116,12 @@ profile:
full:
steps:
- use: minio
- use: etcd
- use: postgres
port: 8432
user: postgres
database: metadata
- use: meta-node
meta-backend: etcd
meta-backend: postgres
- use: compute-node
- use: frontend
- use: compactor
Expand All @@ -121,10 +133,13 @@ profile:
standalone-full-peripherals:
steps:
- use: minio
- use: etcd
- use: postgres
port: 8432
user: postgres
database: metadata
- use: meta-node
user-managed: true
meta-backend: etcd
meta-backend: postgres
- use: compute-node
user-managed: true
- use: frontend
Expand Down

0 comments on commit ee62b43

Please sign in to comment.