Machinedoll
Machinedoll

Reputation: 117

Flink run job with remote jar file

I'm new to flink and trying to submit my flink program to my flink cluster.

I have a flink cluster running on remote kubernetes and a blob storage on Azure.

I know how to submit a flink job when I have the jar file on my local machine but no idea how to submit the job with the remote jar file(the jar can be access by https)

checked the documents and it seems doesn't provide something like what we do in spark

Thanks in advance

Upvotes: 1

Views: 1353

Answers (1)

Dagang Wei
Dagang Wei

Reputation: 26458

I think you can use an init container to download the job jar into a shared volume, then submit the local jar to Flink.

Ads: Google's Flink Operator supports remote job jar, see this example.

Upvotes: 1

Related Questions