HDFS-16153. Avoid evaluation of LOG.debug statement in QuorumJournalManager (#3269). Contributed by wangzhaohui.
(cherry picked from commit a73b64f86b
)
This commit is contained in:
parent
b3077543cf
commit
e9ba4f4591
|
@ -586,7 +586,7 @@ public class QuorumJournalManager implements JournalManager {
|
|||
responseCounts.get(responseCounts.size() - loggers.getMajoritySize());
|
||||
if (maxAllowedTxns == 0) {
|
||||
LOG.debug("No new edits available in logs; requested starting from " +
|
||||
"ID " + fromTxnId);
|
||||
"ID {}", fromTxnId);
|
||||
return;
|
||||
}
|
||||
LogAction logAction = selectInputStreamLogHelper.record(fromTxnId);
|
||||
|
@ -618,9 +618,10 @@ public class QuorumJournalManager implements JournalManager {
|
|||
Map<AsyncLogger, RemoteEditLogManifest> resps =
|
||||
loggers.waitForWriteQuorum(q, selectInputStreamsTimeoutMs,
|
||||
"selectStreamingInputStreams");
|
||||
|
||||
LOG.debug("selectStreamingInputStream manifests:\n" +
|
||||
if (LOG.isDebugEnabled()) {
|
||||
LOG.debug("selectStreamingInputStream manifests:\n {}",
|
||||
Joiner.on("\n").withKeyValueSeparator(": ").join(resps));
|
||||
}
|
||||
|
||||
final PriorityQueue<EditLogInputStream> allStreams =
|
||||
new PriorityQueue<EditLogInputStream>(64,
|
||||
|
|
Loading…
Reference in New Issue