HDFS-13789. Reduce logging frequency of QuorumJournalManager#selectInputStreams. Contributed by Erik Krogen.
This commit is contained in:
parent
eae0a5d54a
commit
4c9baba066
|
@ -498,8 +498,10 @@ public class QuorumJournalManager implements JournalManager {
|
||||||
// the cache used for RPC calls is not enabled; fall back to using the
|
// the cache used for RPC calls is not enabled; fall back to using the
|
||||||
// streaming mechanism to serve such requests
|
// streaming mechanism to serve such requests
|
||||||
if (inProgressOk && inProgressTailingEnabled) {
|
if (inProgressOk && inProgressTailingEnabled) {
|
||||||
LOG.info("Tailing edits starting from txn ID " + fromTxnId +
|
if (LOG.isDebugEnabled()) {
|
||||||
" via RPC mechanism");
|
LOG.debug("Tailing edits starting from txn ID " + fromTxnId +
|
||||||
|
" via RPC mechanism");
|
||||||
|
}
|
||||||
try {
|
try {
|
||||||
Collection<EditLogInputStream> rpcStreams = new ArrayList<>();
|
Collection<EditLogInputStream> rpcStreams = new ArrayList<>();
|
||||||
selectRpcInputStreams(rpcStreams, fromTxnId, onlyDurableTxns);
|
selectRpcInputStreams(rpcStreams, fromTxnId, onlyDurableTxns);
|
||||||
|
|
Loading…
Reference in New Issue