Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ MessageIdV5 sendInternal(
// regular-to-scalable migration. Drop the stale per-segment producer and wait
// for the DAG watch to deliver the new layout; routeMessage on the next attempt
// lands on an active child.
log.info().attr("segmentId", segmentId).attr("attempt", attempt + 1)
log.debug().attr("segmentId", segmentId).attr("attempt", attempt + 1)
.log("Target segment gone, waiting for layout update");
segmentProducers.remove(segmentId);
// The message stays with this layer while it waits for the new layout.
Expand Down Expand Up @@ -622,7 +622,7 @@ private void handleAsyncSegmentFailure(PendingSend<T> send, long segmentId,
int attempt, Throwable ex, Runnable retry) {
Throwable cause = ex instanceof CompletionException ? ex.getCause() : ex;
if (isSegmentGoneError(cause) && attempt < SEND_RETRY_MAX_ATTEMPTS) {
log.info().attr("segmentId", segmentId).attr("attempt", attempt + 1)
log.debug().attr("segmentId", segmentId).attr("attempt", attempt + 1)
.log("Target segment gone, retrying async send after layout update");
retry.run();
} else {
Expand Down
Loading