You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The flink command line supports a number of flags, like --classpath.
Those flags need to be passed before the jar name, otherwise, flink simply ignore them.
For example the following would work:
flink run \
--class foo.bar.Baz -\
-classpath /path/to/a/custom/artifact.jar \
myapp.jar
But this would not
flink run \
--class foo.bar.Baz \
myapp.jar \
--classpath /path/to/a/custom/artifact.jar
The operator won't let you pass those custom flags bc. there's not way to insert flag before the job jar. see
The
flink
command line supports a number of flags, like--classpath
.Those flags need to be passed before the jar name, otherwise, flink simply ignore them.
For example the following would work:
But this would not
The operator won't let you pass those custom flags bc. there's not way to insert flag before the job jar. see
flink-on-k8s-operator/controllers/flinkcluster/flinkcluster_converter.go
Lines 598 to 686 in 6fd9615
The text was updated successfully, but these errors were encountered: