HADOOP-15742. Log if ipc backoff is enabled in CallQueueManager. Contributed by Ryan Wu.
This commit is contained in:
parent
281c192e7f
commit
ee051ef9fe
@ -81,8 +81,9 @@ public CallQueueManager(Class<? extends BlockingQueue<E>> backingClass,
|
||||
this.clientBackOffEnabled = clientBackOffEnabled;
|
||||
this.putRef = new AtomicReference<BlockingQueue<E>>(bq);
|
||||
this.takeRef = new AtomicReference<BlockingQueue<E>>(bq);
|
||||
LOG.info("Using callQueue: " + backingClass + " queueCapacity: " +
|
||||
maxQueueSize + " scheduler: " + schedulerClass);
|
||||
LOG.info("Using callQueue: {}, queueCapacity: {}, " +
|
||||
"scheduler: {}, ipcBackoff: {}.",
|
||||
backingClass, maxQueueSize, schedulerClass, clientBackOffEnabled);
|
||||
}
|
||||
|
||||
@VisibleForTesting // only!
|
||||
|
Loading…
Reference in New Issue
Block a user