Hi, My Apache Flink code is using some Flink libraries that are not contained in the path $FLINK_HOME/lib. So as I want to run my code on a remote cluster, I need to set a path that copy dependency libraries there (instead of setting jars in ExecutionEnvirnmnet object likeĀ
ExecutionEnvironment env = ExecutionEnvironment
.createRemoteEnvironment("flink-master", 6123, "/home/user/udfs.jar");)
Is there any way to do that in Apache Flink? Is it sufficient to set the path of jar files on the local machineĀ to be sent to remote cluster nodes?