Skip to content

Commit 333db0e

Browse files
committed
fix
1 parent 5c6a060 commit 333db0e

File tree

2 files changed

+8
-13
lines changed

2 files changed

+8
-13
lines changed

website/docs/quickstart/flink-iceberg.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ services:
9797
depends_on:
9898
- zookeeper
9999
- namenode
100-
- datanode
101100
environment:
102101
- |
103102
FLUSS_PROPERTIES=
@@ -123,7 +122,7 @@ services:
123122
bind.listeners: FLUSS://tablet-server:9123
124123
data.dir: /tmp/fluss/data
125124
remote.data.dir: hdfs://namenode:8020/fluss-data
126-
kv.snapshot.interval: 10s
125+
kv.snapshot.interval: 30s
127126
datalake.format: iceberg
128127
datalake.iceberg.type: hadoop
129128
datalake.iceberg.warehouse: hdfs://namenode:8020/fluss-lake
@@ -386,7 +385,7 @@ The following SQL query should return an empty result.
386385
SELECT * FROM fluss_customer WHERE `cust_key` = 1;
387386
```
388387

389-
## Fluss Remote Storage
388+
## Remote Storage
390389

391390
Finally, you can use the following command to view the fluss kv snapshot stored in fluss remote storage:
392391
```shell
@@ -547,7 +546,7 @@ SELECT sum(total_price) as sum_price FROM datalake_enriched_orders;
547546

548547
You can execute the real-time analytics query multiple times, and the results will vary with each run as new data is continuously written to Fluss in real-time.
549548

550-
### Storage
549+
### Lake Storage
551550

552551
Finally, you can use the following command to view the files stored in Iceberg Hadoop warehouse:
553552
```shell

website/docs/quickstart/flink.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ services:
5757
HDFS-SITE.XML_dfs.permissions.enabled: false
5858
HDFS-SITE.XML_dfs.datanode.address: datanode:9866
5959
healthcheck:
60-
test: ["CMD", "hdfs dfs -ls /"]
61-
interval: 10s
60+
test: ["CMD", "hdfs dfs -test -d / && exit 0 || exit 1"]
61+
interval: 15s
6262
timeout: 10s
6363
retries: 20
6464

@@ -84,8 +84,6 @@ services:
8484
condition: service_healthy
8585
zookeeper:
8686
condition: service_started
87-
datanode:
88-
condition: service_started
8987
environment:
9088
- |
9189
FLUSS_PROPERTIES=
@@ -95,9 +93,7 @@ services:
9593
datalake.format: paimon
9694
datalake.paimon.metastore: filesystem
9795
datalake.paimon.warehouse: hdfs://namenode:8020/fluss-lake
98-
volumes:
99-
- ./lib:/tmp/lib
100-
entrypoint: [ "sh", "-c", "cp -v /tmp/lib/*.jar /opt/fluss/plugins/iceberg/ && exec /docker-entrypoint.sh coordinatorServer" ]
96+
command: coordinatorServer
10197
tablet-server:
10298
image: fluss/fluss:$FLUSS_DOCKER_VERSION$
10399
command: tabletServer
@@ -375,7 +371,7 @@ The following SQL query should return an empty result.
375371
SELECT * FROM fluss_customer WHERE `cust_key` = 1;
376372
```
377373

378-
## Fluss Remote Storage
374+
## Remote Storage
379375

380376
Finally, you can use the following command to view the fluss kv snapshot stored in fluss remote storage:
381377
```shell
@@ -529,7 +525,7 @@ The result looks like:
529525
```
530526
You can execute the real-time analytics query multiple times, and the results will vary with each run as new data is continuously written to Fluss in real-time.
531527

532-
### Storage
528+
### Lake Storage
533529

534530
Finally, you can use the following command to view the files stored in Paimon Hadoop warehouse:
535531
```shell

0 commit comments

Comments
 (0)