dybyte commented on PR #9818: URL: https://github.com/apache/seatunnel/pull/9818#issuecomment-3294380844
I’m not entirely certain why the permission check still throws an exception even after the retry. However, it seems that the reason the job does not terminate afterward may be related to #9749 . Typically, tests verify behavior with assertions after the job has successfully completed. In this particular case, however, an exception occurs during the job execution itself. As a result, the job is likely not removed from `pendingJobMasterMap` and continues to be counted in `runningJobCount`. For more details, please see the end of this log: https://github.com/dybyte/seatunnel/actions/runs/17436786971/job/49509156864 ``` 2025-09-03T15:41:40.5697311Z [] 2025-09-03 15:41:40,568 INFO tc.seatunnel-engine:openjdk:8 - STDOUT: *********************************************** 2025-09-03T15:41:40.5698018Z [] 2025-09-03 15:41:40,568 INFO tc.seatunnel-engine:openjdk:8 - STDOUT: Job info detail 2025-09-03T15:41:40.5698734Z [] 2025-09-03 15:41:40,568 INFO tc.seatunnel-engine:openjdk:8 - STDOUT: *********************************************** 2025-09-03T15:41:40.5699653Z [] 2025-09-03 15:41:40,568 INFO tc.seatunnel-engine:openjdk:8 - STDOUT: createdJobCount : 0 2025-09-03T15:41:40.5700308Z [] 2025-09-03 15:41:40,568 INFO tc.seatunnel-engine:openjdk:8 - STDOUT: pendingJobCount : 0 2025-09-03T15:41:40.5700922Z [] 2025-09-03 15:41:40,568 INFO tc.seatunnel-engine:openjdk:8 - STDOUT: scheduledJobCount : 0 2025-09-03T15:41:40.5701606Z [] 2025-09-03 15:41:40,568 INFO tc.seatunnel-engine:openjdk:8 - STDOUT: runningJobCount : 1 2025-09-03T15:41:40.5702402Z [] 2025-09-03 15:41:40,568 INFO tc.seatunnel-engine:openjdk:8 - STDOUT: failingJobCount : 0 2025-09-03T15:41:40.5702986Z [] 2025-09-03 15:41:40,568 INFO tc.seatunnel-engine:openjdk:8 - STDOUT: failedJobCount : 0 2025-09-03T15:41:40.5703563Z [] 2025-09-03 15:41:40,568 INFO tc.seatunnel-engine:openjdk:8 - STDOUT: cancellingJobCount : 0 2025-09-03T15:41:40.5704134Z [] 2025-09-03 15:41:40,568 INFO tc.seatunnel-engine:openjdk:8 - STDOUT: canceledJobCount : 0 2025-09-03T15:41:40.5704791Z [] 2025-09-03 15:41:40,568 INFO tc.seatunnel-engine:openjdk:8 - STDOUT: finishedJobCount : 0 2025-09-03T15:41:40.5705342Z [] 2025-09-03 15:41:40,568 INFO tc.seatunnel-engine:openjdk:8 - STDOUT: *********************************************** ``` @Hisoka-X @hawk9821 @zhangshenghang -- 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]
