Replies: 11 comments 5 replies
-
+1 |
Beta Was this translation helpful? Give feedback.
-
+1. I tried with quickstart, (paimon + s3) + local fluss cluster(not docker) + local flink 1.19, everything works well. |
Beta Was this translation helpful? Give feedback.
-
+1
|
Beta Was this translation helpful? Give feedback.
-
+1
|
Beta Was this translation helpful? Give feedback.
-
+1, verify:
|
Beta Was this translation helpful? Give feedback.
-
+1
|
Beta Was this translation helpful? Give feedback.
-
+1
|
Beta Was this translation helpful? Give feedback.
-
steps to reproduce.
services:
#begin Fluss cluster
coordinator-server:
image: fluss/fluss:v0.7.0-rc2
command: coordinatorServer
depends_on:
- zookeeper
environment:
- |
FLUSS_PROPERTIES=
zookeeper.address: zookeeper:2181
coordinator.host: coordinator-server # OLD CONFIG OPTION!
remote.data.dir: /tmp/fluss/remote-data
datalake.format: paimon
datalake.paimon.metastore: filesystem
datalake.paimon.warehouse: /tmp/paimon
volumes:
- shared-tmpfs:/tmp/paimon
tablet-server:
image: fluss/fluss:v0.7.0-rc2
command: tabletServer
depends_on:
- coordinator-server
environment:
- |
FLUSS_PROPERTIES=
zookeeper.address: zookeeper:2181
tablet-server.host: tablet-server # OLD CONFIG OPTION!
data.dir: /tmp/fluss/data
remote.data.dir: /tmp/fluss/remote-data
kv.snapshot.interval: 0s
datalake.format: paimon
datalake.paimon.metastore: filesystem
datalake.paimon.warehouse: /tmp/paimon
volumes:
- shared-tmpfs:/tmp/paimon
zookeeper:
restart: always
image: zookeeper:3.9.2
#end
#begin Flink cluster
jobmanager:
image: fluss/quickstart-flink:1.20-0.6 # OLD CLIENT!
ports:
- "8083:8081"
command: jobmanager
environment:
- |
FLINK_PROPERTIES=
jobmanager.rpc.address: jobmanager
volumes:
- shared-tmpfs:/tmp/paimon
taskmanager:
image: fluss/quickstart-flink:1.20-0.6 # OLD CLIENT!
depends_on:
- jobmanager
command: taskmanager
environment:
- |
FLINK_PROPERTIES=
jobmanager.rpc.address: jobmanager
taskmanager.numberOfTaskSlots: 10
taskmanager.memory.process.size: 2048m
taskmanager.memory.framework.off-heap.size: 256m
volumes:
- shared-tmpfs:/tmp/paimon
#end
volumes:
shared-tmpfs:
driver: local
driver_opts:
type: "tmpfs"
device: "tmpfs"
Output:
throws
|
Beta Was this translation helpful? Give feedback.
-
I tried with new features in this release, including:
|
Beta Was this translation helpful? Give feedback.
-
Sorry for interrupted our vote, but we found a blocker issue, #1121 and I've raised a PR #1123 for fix is ASAP, CC @luoyuxia @wuchong |
Beta Was this translation helpful? Give feedback.
-
@leonardBang thanks for reporting this. I closed this RC2 and will prepare RC3. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
This is the Fluss 0.7.0 release RC2. You can verify the release using the signature (.asc files) or hashes (.sha256 files).
The complete staging area is available for your review, which includes:
The docker image for release-0.7.0 RC2 also has been uploaded with tag
v0.7.0-rc2
. Welcome to verify it.To verify it, you can follow
Nothing needed to change in the docker-compose file, as the docker image tag has been adapted for the RC test.
Full Changelog: https://github.com/alibaba/fluss/commits/v0.7.0-rc2
This discussion was created from the release Release 0.7.0 RC2.
Beta Was this translation helpful? Give feedback.
All reactions