Skip to content

Commit 30dc6e3

Browse files
authored
[docs] Use a remote path instead of local path for "data.remote.dir" in distributed cluster guide (#1484)
1 parent dc3608c commit 30dc6e3

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

website/docs/install-deploy/deploying-distributed-cluster.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,10 @@ bind.listeners: FLUSS://192.168.10.100:9123
7171
zookeeper.address: 192.168.10.199:2181
7272
zookeeper.path.root: /fluss
7373

74-
remote.data.dir: /tmp/fluss-remote-data
74+
# When running in distributed mode, be sure to point to a remote path—
75+
# e.g. oss://bucket/path for OSS or hdfs://namenode:port/path for HDFS.
76+
# Otherwise, queries will fail with a “No such file or directory” error.
77+
remote.data.dir: hdfs://namenode:port/tmp/fluss-remote-data
7578
```
7679
7780
**Node1**
@@ -84,7 +87,10 @@ tablet-server.id: 1
8487
zookeeper.address: 192.168.10.199:2181
8588
zookeeper.path.root: /fluss
8689

87-
remote.data.dir: /tmp/fluss-remote-data
90+
# When running in distributed mode, be sure to point to a remote path—
91+
# e.g. oss://bucket/path for OSS or hdfs://namenode:port/path for HDFS.
92+
# Otherwise, queries will fail with a “No such file or directory” error.
93+
remote.data.dir: hdfs://namenode:port/tmp/fluss-remote-data
8894
```
8995
9096
**Node2**
@@ -97,7 +103,10 @@ tablet-server.id: 2
97103
zookeeper.address: 192.168.10.199:2181
98104
zookeeper.path.root: /fluss
99105

100-
remote.data.dir: /tmp/fluss-remote-data
106+
# When running in distributed mode, be sure to point to a remote path—
107+
# e.g. oss://bucket/path for OSS or hdfs://namenode:port/path for HDFS.
108+
# Otherwise, queries will fail with a “No such file or directory” error.
109+
remote.data.dir: hdfs://namenode:port/tmp/fluss-remote-data
101110
```
102111
103112
**Node3**
@@ -109,7 +118,10 @@ tablet-server.id: 3
109118
zookeeper.address: 192.168.10.199:2181
110119
zookeeper.path.root: /fluss
111120

112-
remote.data.dir: /tmp/fluss-remote-data
121+
# When running in distributed mode, be sure to point to a remote path—
122+
# e.g. oss://bucket/path for OSS or hdfs://namenode:port/path for HDFS.
123+
# Otherwise, queries will fail with a “No such file or directory” error.
124+
remote.data.dir: hdfs://namenode:port/tmp/fluss-remote-data
113125
```
114126
115127
:::note

0 commit comments

Comments
 (0)