Hi there, is there a canonical / suggested way to customize the classpath of the Flink JM and TM processes?
At the moment I hardcoded my way around this by manually changing the following lines like that: # in taskmanager.sh $JAVA_RUN [...] -classpath "/tmp/classes:$FLINK_TM_CLASSPATH" # in jobmanagre.sh $JAVA_RUN [...] -classpath "/tmp/classes:$FLINK_JM_CLASSPATH" Perhaps there is a variable that I can set in conf/flink.yaml that will do the same trick.