This is an automated email from the ASF dual-hosted git repository.
jark pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fluss.git
The following commit(s) were added to refs/heads/main by this push:
new 30dc6e300 [docs] Use a remote path instead of local path for
"data.remote.dir" in distributed cluster guide (#1484)
30dc6e300 is described below
commit 30dc6e300c21d8a99bc14595b028d86fded6427f
Author: leosanqing <[email protected]>
AuthorDate: Wed Sep 3 15:59:03 2025 +0800
[docs] Use a remote path instead of local path for "data.remote.dir" in
distributed cluster guide (#1484)
---
.../install-deploy/deploying-distributed-cluster.md | 20 ++++++++++++++++----
1 file changed, 16 insertions(+), 4 deletions(-)
diff --git a/website/docs/install-deploy/deploying-distributed-cluster.md
b/website/docs/install-deploy/deploying-distributed-cluster.md
index f4bc1f0b4..cff0cb406 100644
--- a/website/docs/install-deploy/deploying-distributed-cluster.md
+++ b/website/docs/install-deploy/deploying-distributed-cluster.md
@@ -71,7 +71,10 @@ bind.listeners: FLUSS://192.168.10.100:9123
zookeeper.address: 192.168.10.199:2181
zookeeper.path.root: /fluss
-remote.data.dir: /tmp/fluss-remote-data
+# When running in distributed mode, be sure to point to a remote path—
+# e.g. oss://bucket/path for OSS or hdfs://namenode:port/path for HDFS.
+# Otherwise, queries will fail with a “No such file or directory” error.
+remote.data.dir: hdfs://namenode:port/tmp/fluss-remote-data
```
**Node1**
@@ -84,7 +87,10 @@ tablet-server.id: 1
zookeeper.address: 192.168.10.199:2181
zookeeper.path.root: /fluss
-remote.data.dir: /tmp/fluss-remote-data
+# When running in distributed mode, be sure to point to a remote path—
+# e.g. oss://bucket/path for OSS or hdfs://namenode:port/path for HDFS.
+# Otherwise, queries will fail with a “No such file or directory” error.
+remote.data.dir: hdfs://namenode:port/tmp/fluss-remote-data
```
**Node2**
@@ -97,7 +103,10 @@ tablet-server.id: 2
zookeeper.address: 192.168.10.199:2181
zookeeper.path.root: /fluss
-remote.data.dir: /tmp/fluss-remote-data
+# When running in distributed mode, be sure to point to a remote path—
+# e.g. oss://bucket/path for OSS or hdfs://namenode:port/path for HDFS.
+# Otherwise, queries will fail with a “No such file or directory” error.
+remote.data.dir: hdfs://namenode:port/tmp/fluss-remote-data
```
**Node3**
@@ -109,7 +118,10 @@ tablet-server.id: 3
zookeeper.address: 192.168.10.199:2181
zookeeper.path.root: /fluss
-remote.data.dir: /tmp/fluss-remote-data
+# When running in distributed mode, be sure to point to a remote path—
+# e.g. oss://bucket/path for OSS or hdfs://namenode:port/path for HDFS.
+# Otherwise, queries will fail with a “No such file or directory” error.
+remote.data.dir: hdfs://namenode:port/tmp/fluss-remote-data
```
:::note