Re: K8s native - checkpointing to S3 with RockDBStateBackend
Posted by
Yang Wang on
URL: http://deprecated-apache-flink-user-mailing-list-archive.369.s1.nabble.com/K8s-native-checkpointing-to-S3-with-RockDBStateBackend-tp34626p34788.html
Hi Averell,
Hadoop could directly support S3AFileSystem. When you deploy a Flink job
on YARN, the hadoop classpath will be added to JobManager/TaskManager
automatically. That means you could use "s3a" schema without putting
"flink-s3-fs-hadoop.jar" in the plugin directory.
In K8s deployment, we do not have a hadoop filesystem by default. So then
you need to do this manually.
Best,
Yang