EricJoy2048 commented on code in PR #2724:
URL: 
https://github.com/apache/incubator-seatunnel/pull/2724#discussion_r970504929


##########
seatunnel-engine/seatunnel-engine-server/src/main/java/org/apache/seatunnel/engine/server/SeaTunnelServer.java:
##########
@@ -242,6 +246,28 @@ public JobStatus getJobStatus(long jobId) {
         return runningJobMaster.getJobStatus();
     }
 
+    public void failedTaskOnMemberRemoved(MembershipServiceEvent event) {
+        Address lostAddress = event.getMember().getAddress();
+        runningJobMasterMap.forEach((aLong, jobMaster) -> {
+            jobMaster.getPhysicalPlan().getPipelineList().forEach(subPlan -> {
+                subPlan.getPhysicalVertexList().forEach(physicalVertex -> {

Review Comment:
   subPlan.getCoordinatorList need make failed too.



-- 
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]

Reply via email to