tillrohrmann commented on a change in pull request #16867:
URL: https://github.com/apache/flink/pull/16867#discussion_r692790869
##########
File path:
flink-runtime/src/main/java/org/apache/flink/runtime/source/coordinator/SourceCoordinator.java
##########
@@ -161,13 +161,24 @@ public void handleEventFromOperator(int subtask,
OperatorEvent event) {
operatorName,
event);
if (event instanceof RequestSplitEvent) {
+ LOG.info(
+ "Source {} received split request from
parallel task {}",
+ operatorName,
+ subtask);
Review comment:
I am wondering whether this information is really helpful for a user of
Flink. My spontaneous gut feeling is that it could also be logged on debug log
level. This, however, already happens a couple of lines above.
Hence, I guess the first question is whether this is information we want to
expose to every user. If yes, then we should probably change the `LOG.debug`
line above to not log duplicate information on debug log level.
--
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]