Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove connector-node from docker #13344

Merged
merged 4 commits into from
Nov 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions docker/docker-compose-with-azblob.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,6 @@ services:
- etcd
- "--etcd-endpoints"
- "etcd-0:2388"
- "--connector-rpc-endpoint"
- "connector-node:50051"
- "--state-store"
- "hummock+azblob://<container_name>"
- "--data-directory"
Expand All @@ -62,10 +60,6 @@ services:
extends:
file: docker-compose.yml
service: prometheus-
connector-node:
extends:
file: docker-compose.yml
service: connector-node
message_queue:
extends:
file: docker-compose.yml
Expand Down
6 changes: 0 additions & 6 deletions docker/docker-compose-with-gcs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,6 @@ services:
- etcd
- "--etcd-endpoints"
- "etcd-0:2388"
- "--connector-rpc-endpoint"
- "connector-node:50051"
- "--state-store"
- "hummock+gcs://<bucket-name>"
- "--data-directory"
Expand All @@ -62,10 +60,6 @@ services:
extends:
file: docker-compose.yml
service: prometheus-0
connector-node:
extends:
file: docker-compose.yml
service: connector-node
message_queue:
extends:
file: docker-compose.yml
Expand Down
11 changes: 0 additions & 11 deletions docker/docker-compose-with-hdfs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,6 @@ services:
- "0.0.0.0:1222"
- "--meta-address"
- "http://meta-node-0:5690"
- "--connector-rpc-endpoint"
- "connector-node:50051"
- "--config-path"
- /risingwave.toml
expose:
Expand Down Expand Up @@ -212,8 +210,6 @@ services:
- etcd
- "--etcd-endpoints"
- "etcd-0:2388"
- "--connector-rpc-endpoint"
- "connector-node:50051"
- "--state-store"
- "hummock+hdfs://<cluster_name>"
- "--data-directory"
Expand Down Expand Up @@ -276,13 +272,6 @@ services:
timeout: 5s
retries: 5
restart: always
connector-node:
image: ghcr.io/risingwavelabs/risingwave:RW_1.1_HADOOP2-x86_64
entrypoint: "/risingwave/bin/connector-node/start-service.sh"
ports:
- 50051
- 50052
container_name: connector-node
message_queue:
image: "docker.vectorized.io/vectorized/redpanda:latest"
command:
Expand Down
6 changes: 0 additions & 6 deletions docker/docker-compose-with-oss.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,6 @@ services:
- etcd
- "--etcd-endpoints"
- "etcd-0:2388"
- "--connector-rpc-endpoint"
- "connector-node:50051"
- "--state-store"
- "hummock+oss://<bucket_name>"
- "--data-directory"
Expand All @@ -62,10 +60,6 @@ services:
extends:
file: docker-compose.yml
service: prometheus-0
connector-node:
extends:
file: docker-compose.yml
service: connector-node
message_queue:
extends:
file: docker-compose.yml
Expand Down
6 changes: 0 additions & 6 deletions docker/docker-compose-with-s3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,6 @@ services:
- etcd
- "--etcd-endpoints"
- "etcd-0:2388"
- "--connector-rpc-endpoint"
- "connector-node:50051"
- "--state-store"
- "hummock+s3://<bucket-name>"
- "--data-directory"
Expand All @@ -62,10 +60,6 @@ services:
extends:
file: docker-compose.yml
service: prometheus-0
connector-node:
extends:
file: docker-compose.yml
service: connector-node
message_queue:
extends:
file: docker-compose.yml
Expand Down
4 changes: 0 additions & 4 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,6 @@ services:
- "0.0.0.0:1222"
- "--meta-address"
- "http://meta-node-0:5690"
- "--connector-rpc-endpoint"
- "connector-node:50051"
- "--config-path"
- /risingwave.toml
expose:
Expand Down Expand Up @@ -219,8 +217,6 @@ services:
- etcd
- "--etcd-endpoints"
- "etcd-0:2388"
- "--connector-rpc-endpoint"
- "connector-node:50051"
- "--state-store"
- "hummock+minio://hummockadmin:hummockadmin@minio-0:9301/hummock001"
- "--data-directory"
Expand Down
4 changes: 0 additions & 4 deletions docker/prometheus.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,3 @@ scrape_configs:
- job_name: redpanda
static_configs:
- targets: ["message_queue:9644"]

- job_name: connector-node
static_configs:
- targets: ["connector-node:50052"]
Loading