Search code examples
apache-flink

Where can I find my jar on Apache Flink server which I submitted using Apache Flink dashboard


I developed a Flink job and submitted my job using Apache Flink dashboard. Per my understanding, when I submit my job, my jar should be available on Flink server. I tried to figure out path of my jar but couldn't able to. Does Flink keep these jar file on server? If yes, where I can find? Any documentation? Please help. Thanks!


Solution

  • JAR files are renamed when they are uploaded and stored in a directory that can be configured with the web.upload.dir configuration key.

    If the web.upload.dir parameter is not set, the JAR files are stored in a dynamically generated directory under the jobmanager.web.tmpdir (default is System.getProperty("java.io.tmpdir")).