Skip to content

Commit a39c304

Browse files
committed
[Docs] Adapt Flink Quickstart Guide for bind.listeners config option
1 parent 063793b commit a39c304

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

website/docs/quickstart/flink.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ services:
6363
- |
6464
FLUSS_PROPERTIES=
6565
zookeeper.address: zookeeper:2181
66-
coordinator.host: coordinator-server
66+
bind.listeners: FLUSS://coordinator-server:9123
6767
remote.data.dir: /tmp/fluss/remote-data
6868
datalake.format: paimon
6969
datalake.paimon.metastore: filesystem
@@ -77,7 +77,7 @@ services:
7777
- |
7878
FLUSS_PROPERTIES=
7979
zookeeper.address: zookeeper:2181
80-
tablet-server.host: tablet-server
80+
bind.listeners: FLUSS://tablet-server:9123
8181
data.dir: /tmp/fluss/data
8282
remote.data.dir: /tmp/fluss/remote-data
8383
kv.snapshot.interval: 0s
@@ -363,7 +363,7 @@ SELECT * FROM fluss_customer WHERE `cust_key` = 1;
363363
To integrate with [Apache Paimon](https://paimon.apache.org/), you need to start the `Lakehouse Tiering Service`.
364364
Open a new terminal, navigate to the `fluss-quickstart-flink` directory, and execute the following command within this directory to start the service:
365365
```shell
366-
docker compose exec coordinator-server ./bin/lakehouse.sh -D flink.rest.address=jobmanager -D flink.rest.port=8081 -D flink.execution.checkpointing.interval=30s
366+
docker compose exec coordinator-server ./bin/lakehouse.sh -D flink.rest.address=jobmanager -D flink.rest.port=8081 -D flink.execution.checkpointing.interval=30s -D bootstrap.servers=coordinator-server:9123
367367
```
368368
You should see a Flink Job named `fluss-paimon-tiering-service` running in the [Flink Web UI](http://localhost:8083/).
369369

0 commit comments

Comments
 (0)