Skip to content

Commit

Permalink
Perf[MQB]: throttle logs critical for broadcast (#482)
Browse files Browse the repository at this point in the history
Signed-off-by: Evgeny Malygin <[email protected]>
  • Loading branch information
678098 authored Oct 28, 2024
1 parent 9a9b79f commit 6d3790f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/groups/mqb/mqbblp/mqbblp_remotequeue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1179,9 +1179,9 @@ void RemoteQueue::onAckMessageDispatched(const mqbi::DispatcherAckEvent& event)

erasePendingMessage(it);

BALL_LOG_INFO << d_state_p->uri() << ": erased window of " << numErased
<< " cached broadcasted PUTs upon "
<< bmqt::AckResult::toAscii(ackResult);
BALL_LOG_DEBUG << d_state_p->uri() << ": erased window of "
<< numErased << " cached broadcasted PUTs upon "
<< bmqt::AckResult::toAscii(ackResult);

return; // RETURN
}
Expand Down Expand Up @@ -1340,9 +1340,9 @@ void RemoteQueue::expirePendingMessagesDispatched()
}
else {
d_pendingMessagesTimerEventHandle.release();
BALL_LOG_INFO << d_state_p->uri() << ": "
<< "no more timer scheduled to check expiration of "
<< "pending PUSH messages";
BALL_LOG_DEBUG << d_state_p->uri() << ": "
<< "no more timer scheduled to check expiration of "
<< "pending PUSH messages";
}
}

Expand Down

0 comments on commit 6d3790f

Please sign in to comment.