[
https://issues.apache.org/jira/browse/HADOOP-15742?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16613293#comment-16613293
]
Ryan Wu commented on HADOOP-15742:
----------------------------------
Hi,[~linyiqun], I have used string interpolation way in HADOOP-15742.002.patch.
The following output logs were tested in my local.
{quote}
2018-09-13 18:05:32,077 INFO ipc.CallQueueManager
(CallQueueManager.java:<init>(84)) - Using callQueue: class
org.apache.hadoop.ipc.FairCallQueue, queueCapacity: 8, scheduler: class
org.apache.hadoop.ipc.DecayRpcScheduler, ipcBackoff: false.
{quote}
> Log if ipc backoff is enabled in CallQueueManager
> -------------------------------------------------
>
> Key: HADOOP-15742
> URL: https://issues.apache.org/jira/browse/HADOOP-15742
> Project: Hadoop Common
> Issue Type: Improvement
> Affects Versions: 3.1.1
> Reporter: Yiqun Lin
> Assignee: Ryan Wu
> Priority: Minor
> Attachments: HADOOP-15742.001.patch, HADOOP-15742.002.patch
>
>
> Currently we don't log the info of ipc backoff. It will look good to print
> this as well so that makes users know if we enable this.
> {code:java}
> public CallQueueManager(Class<? extends BlockingQueue<E>> backingClass,
> Class<? extends RpcScheduler> schedulerClass,
> boolean clientBackOffEnabled, int maxQueueSize, String namespace,
> Configuration conf) {
> int priorityLevels = parseNumLevels(namespace, conf);
> this.scheduler = createScheduler(schedulerClass, priorityLevels,
> namespace, conf);
> BlockingQueue<E> bq = createCallQueueInstance(backingClass,
> priorityLevels, maxQueueSize, namespace, conf);
> 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);
> }
> {code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]