tillrohrmann commented on a change in pull request #8580: [FLINK-12683] Provide
task manager location information for checkpoint coordinator specific log
messages
URL: https://github.com/apache/flink/pull/8580#discussion_r290802869
##########
File path:
flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/CheckpointCoordinator.java
##########
@@ -849,11 +868,11 @@ else if (checkpoint != null) {
if
(recentPendingCheckpoints.contains(checkpointId)) {
wasPendingCheckpoint = true;
LOG.warn("Received late message for now
expired checkpoint attempt {} from " +
- "{} of job {}.", checkpointId,
message.getTaskExecutionId(), message.getJob());
+ "{} of job {} at {}.",
checkpointId, message.getTaskExecutionId(), message.getJob(),
taskManagerLocation);
}
else {
- LOG.debug("Received message for an
unknown checkpoint {} from {} of job {}.",
- checkpointId,
message.getTaskExecutionId(), message.getJob());
+ LOG.debug("Received message for an
unknown checkpoint {} from {} of job {} at {}.",
Review comment:
"from task {}"
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services