Hey everyone, I’m migrating a Flink Kubernetes standalone job to the Flink operator (with Kubernetes native mode).
I have a lot of classloading issues when trying to run with the operator in native mode. For example, I have a Postgres driver as a dependency (I can confirm the files are included in the uber jar), but I still get "java.sql.SQLException: No suitable driver found for jdbc:postgresql:..." exception. In the Kubernetes standalone setup my uber jar is placed in the /opt/flink/lib folder, this is what I specify as "jarURI" in the operator config. Is this supported? Should I only be using /opt/flink/usrlib? Thanks for any suggestions.