This is an automated email from the ASF dual-hosted git repository.
jark pushed a commit to branch release-0.7
in repository https://gitbox.apache.org/repos/asf/fluss.git
The following commit(s) were added to refs/heads/release-0.7 by this push:
new 04291ff8e [docs] Use a remote path instead of local path for
"data.remote.dir" in distributed cluster guide (#1484)
04291ff8e is described below
commit 04291ff8ebccb52b3b669040b2a77f341251c8e6
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 8721ba807..390b8b0f0 100644
--- a/website/docs/install-deploy/deploying-distributed-cluster.md
+++ b/website/docs/install-deploy/deploying-distributed-cluster.md
@@ -87,7 +87,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**
@@ -100,7 +103,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**
@@ -113,7 +119,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**
@@ -125,7 +134,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