swapna267 commented on code in PR #28002:
URL: https://github.com/apache/flink/pull/28002#discussion_r3144071955
##########
flink-runtime/src/main/java/org/apache/flink/runtime/dispatcher/Dispatcher.java:
##########
@@ -1337,6 +1342,37 @@ private void persistAndRunJob(ExecutionPlan
executionPlan) throws Exception {
createJobMasterRunner(executionPlan),
ExecutionType.SUBMISSION,
executionPlan.getApplicationId().orElse(null));
+ notifyJobCreated(executionPlan);
+ }
+
+ private void notifyJobCreated(ExecutionPlan executionPlan) {
+ if (!(executionPlan instanceof StreamGraph)) {
Review Comment:
Does this work for jobs in SessionMode ? In Session job, as i understand ,
StreamGraph is generated in Client running in separate JVM. So lineage is not
available serialized over ?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]