[ 
https://issues.apache.org/jira/browse/HADOOP-13244?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Masatake Iwasaki updated HADOOP-13244:
--------------------------------------
       Resolution: Fixed
     Hadoop Flags: Reviewed
    Fix Version/s: 2.8.0
           Status: Resolved  (was: Patch Available)

Committed. Thanks, [~lewuathe].

> o.a.h.ipc.Server#Server should honor handlerCount when queueSizePerHandler is 
> specified in consturctor
> ------------------------------------------------------------------------------------------------------
>
>                 Key: HADOOP-13244
>                 URL: https://issues.apache.org/jira/browse/HADOOP-13244
>             Project: Hadoop Common
>          Issue Type: Bug
>          Components: ipc
>            Reporter: Xiaoyu Yao
>            Assignee: Kai Sasaki
>            Priority: Minor
>             Fix For: 2.8.0
>
>         Attachments: HADOOP-13244.01.patch
>
>
> In the code below,  {{this.maxQueueSize = queueSizePerHandler;}} should be 
> {{ this.maxQueueSize = handlerCount * queueSizePerHandler;}}. Luckily, I 
> search the code base and found most callers invoke the constructor with 
> queueSizePerHandler=-1. This ticket is opened to make it correct for the case 
> when queueSizePerHandler is not -1. 
> {code}
> if (queueSizePerHandler != -1) {
>       this.maxQueueSize = queueSizePerHandler;
>     } else {
>       this.maxQueueSize = handlerCount * conf.getInt(
>           CommonConfigurationKeys.IPC_SERVER_HANDLER_QUEUE_SIZE_KEY,
>           CommonConfigurationKeys.IPC_SERVER_HANDLER_QUEUE_SIZE_DEFAULT);     
>  
>     }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: common-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-issues-h...@hadoop.apache.org

Reply via email to