{"record":{"id":"7ff03a05a4ed67f9","repo":"apache/flink","slug":"jar-file-s-does-not-exist","errorCode":null,"errorMessage":"Jar file %s does not exist","messagePattern":"Jar file (.+?) does not exist","errorType":"exception","errorClass":"RuntimeException","httpStatus":null,"severity":"error","filePath":"flink-clients/src/main/java/org/apache/flink/client/deployment/application/PackagedProgramApplicationEntry.java","lineNumber":101,"sourceCode":"        this.handleFatalError = handleFatalError;\n        this.submitFailedJobOnApplicationError = submitFailedJobOnApplicationError;\n        this.shutDownOnFinish = shutDownOnFinish;\n    }\n\n    @Override\n    public AbstractApplication getApplication(\n            PermanentBlobService blobService,\n            Collection<JobInfo> recoveredJobInfos,\n            Collection<JobInfo> recoveredTerminalJobInfos) {\n        File jarFile;\n        try {\n            jarFile = blobService.getFile(applicationId, userJarInfo.getJarBlobKey());\n        } catch (Exception e) {\n            throw new RuntimeException(\"Failed to get user jar file from blob\", e);\n        }\n\n        if (!jarFile.exists()) {\n            throw new RuntimeException(String.format(\"Jar file %s does not exist\", jarFile));\n        }\n\n        PackagedProgram program;\n        try {\n            program =\n                    PackagedProgram.newBuilder()\n                            .setJarFile(jarFile)\n                            .setEntryPointClassName(entryClass)\n                            .setConfiguration(configuration)\n                            .setUserClassPaths(getClasspaths())\n                            .setArguments(programArgs)\n                            .build();\n        } catch (Exception e) {\n            throw new RuntimeException(\n                    String.format(\n                            \"Failed to create PackagedProgram for application %s\", applicationId),\n                    e);\n        }","sourceCodeStart":83,"sourceCodeEnd":119,"githubUrl":"https://github.com/apache/flink/blob/2f3c205e9266cb30240eb7f4fdab15cad629a70f/flink-clients/src/main/java/org/apache/flink/client/deployment/application/PackagedProgramApplicationEntry.java#L83-L119","documentation":"Error \"Jar file %s does not exist\" thrown in apache/flink.","triggerScenarios":"Triggered at runtime when the operation fails because: Jar file the reported value does not exist.","commonSituations":"Commonly caused by misconfiguration, missing dependencies or files, unsupported types or operations, or invalid user input leading to: Jar file the reported value does not exist.","solutions":["Address the cause reported by the error message: Jar file the reported value does not exist","Verify the inputs, configuration values, and classpath/dependency setup related to this operation, then retry."],"exampleFix":"Correct the condition described (\"Jar file the reported value does not exist\") and rerun the job or command.","handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"2f3c205e9266cb30240eb7f4fdab15cad629a70f","analyzedAt":"2026-08-14T08:48:24.518Z","schemaVersion":2},"datasetVersion":"2026-08-14T10:17:34.591Z"}