This is an automated email from the ASF dual-hosted git repository. jark pushed a commit to branch release-0.9 in repository https://gitbox.apache.org/repos/asf/fluss.git
commit 186aec91fef571197a65c33b4d6f04b6d9c8775f Author: Madhur Chandran <[email protected]> AuthorDate: Thu Feb 12 19:56:22 2026 +0530 [docs] Update local cluster deployment warning (#2654) --- website/docs/install-deploy/deploying-local-cluster.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/website/docs/install-deploy/deploying-local-cluster.md b/website/docs/install-deploy/deploying-local-cluster.md index ad73cf36b..c9af6ab7a 100644 --- a/website/docs/install-deploy/deploying-local-cluster.md +++ b/website/docs/install-deploy/deploying-local-cluster.md @@ -5,9 +5,11 @@ sidebar_position: 2 # Deploying Local Cluster :::warning -**This setup deploys Fluss to a single machine only.** The Fluss endpoint will **only be accessible locally** (e.g. via `localhost`). -If you need access your Fluss cluster from a different machine or deploy across multiple servers, please refer to the [Deploying Distributed Cluster](install-deploy/deploying-distributed-cluster.md). -That guide explains how to use `coordinator-server.sh` and `tablet-server.sh` with an externally accessible homename and port. +**This setup deploys Fluss to a single machine only.** + +By default, the local cluster endpoint is **accessible only locally** (e.g., via `localhost`). To allow external access to your local cluster, configure an externally reachable hostname or IP address of this machine in the `bind.listeners` field of `server.yaml`. When this is set, all services—including TabletServers—will bind to that address, making their ports accessible from remote clients. + +If you require full control over network exposure or plan to deploy Fluss across multiple machines, refer to the [Deploying Distributed Cluster](install-deploy/deploying-distributed-cluster.md) guide. That guide explains how to deploy each `CoordinatorServer` and `TabletServer` with explicitly configured, externally accessible hostnames and ports. ::: This page provides instructions on how to deploy a *local cluster* (on one machine, but in separate processes) for Fluss. @@ -73,4 +75,4 @@ CREATE CATALOG fluss_catalog WITH ( #### Do more with Fluss After the catalog is created, you can use Flink SQL Client to do more with Fluss, for example, create a table, insert data, query data, etc. -More details please refer to [Flink Getting Started](engine-flink/getting-started.md) \ No newline at end of file +More details please refer to [Flink Getting Started](engine-flink/getting-started.md)
