-
I am just running the docker-compose quickstart and I was wondering if one could provide an example configuration to configure Fluss + Paimon for S3 storage. The docs are a little sparse on s3 and setting the config but there is no information on paimon configuration for s3. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 6 replies
-
cc @luoyuxia , could you give some hints here? |
Beta Was this translation helpful? Give feedback.
-
@maarek Hi, thanks for your attention and sorry for missing document about it. I think you can follow these steps:
Hope it can help. |
Beta Was this translation helpful? Give feedback.
-
@luoyuxia Thank you for your reply. I am following the instructions here : https://alibaba.github.io/fluss-docs/docs/quickstart/flink/ I have added the following configuration to the docker containers (I wasn't sure tablet-server config vs coordinator config) to connect to s3 compatible local minio server. First, I do not see it storing anything in s3 with these configs. This is with the As well, when you say flink needs to be configured for s3 and paimon, what then is the configuration below doing when setting lakehouse.storage to paimon and setting the config metastore and warehouse to be on the local filesystem? logs: tablet-server-1 | 2025-02-28 01:11:41,332 INFO com.alibaba.fluss.fs.s3.S3FileSystemPlugin [] - fs.s3a.access.key is set, using provided access key id and secret. coordinator:
tablet-server:
|
Beta Was this translation helpful? Give feedback.
@maarek Hi, thanks for your attention and sorry for missing document about it. I think you can follow these steps:
Configure s3 for Fluss
Follow the document fluss s3 to configure s3 for Fluss.
If you want to read the Fluss with Flink, please remember to copy fluss-fs-os into
FLINK_HOME/lib
Configure s3 for write into Paimon
You'll only need to configure s3 filesystem in Flink since it'll use Flink's filesystem to write to paimon.. You can follow the document filesystem-s3 to configure s3 in Flink
Hope it can help.