pnowojski commented on code in PR #24895:
URL: https://github.com/apache/flink/pull/24895#discussion_r1631426794
##########
flink-streaming-java/src/main/java/org/apache/flink/streaming/runtime/tasks/mailbox/MailboxExecutorImpl.java:
##########
@@ -103,4 +103,9 @@ public boolean tryYield() {
return false;
}
}
+
+ @Override
+ public boolean shouldInterrupt() {
+ return mailbox.hasMail();
Review Comment:
That's the problem with (lack of) priorities that I mentioned in the dev
mailing list and the FLIP. Please take a look:
> Issue with mails and checkpoint barriers priorities
in the FLIP. https://issues.apache.org/jira/browse/FLINK-35051 should
address this at some point. I've added a comment with TODO here to explain this.
--
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]