You are viewing a plain text version of this content. The canonical link for it is here.
Posted to hdfs-dev@hadoop.apache.org by "J.Andreina (JIRA)" <ji...@apache.org> on 2015/03/26 03:47:52 UTC

[jira] [Created] (HDFS-7992) HTTP request queue size limit can be made configurable

J.Andreina created HDFS-7992:
--------------------------------

             Summary: HTTP request queue size limit can be made configurable
                 Key: HDFS-7992
                 URL: https://issues.apache.org/jira/browse/HDFS-7992
             Project: Hadoop HDFS
          Issue Type: Improvement
            Reporter: J.Andreina
            Assignee: J.Andreina


The queue size for httpserver is hardcoded as 128 in 

{code}
  public static Connector createDefaultChannelConnector() {
    SelectChannelConnector ret = new SelectChannelConnector();
    ret.setLowResourceMaxIdleTime(10000);
    ret.setAcceptQueueSize(128);
{code}

It will be better if this can made configurable

In the connection can add a configurable limit of queue size for the http request (“hadoop.http.max.queue.size”).



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