You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@drill.apache.org by "ASF GitHub Bot (JIRA)" <ji...@apache.org> on 2017/12/12 15:29:00 UTC

[jira] [Commented] (DRILL-5994) Cannot start web server on a machine with more than 200 cores

    [ https://issues.apache.org/jira/browse/DRILL-5994?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16287746#comment-16287746 ] 

ASF GitHub Bot commented on DRILL-5994:
---------------------------------------

GitHub user MitchelLabonte opened a pull request:

    https://github.com/apache/drill/pull/1069

    DRILL-5994 Added webserver maxThreads configuration option to enable …

    …launching on a machine with more than 200 cores

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/MitchelLabonte/drill DRILL-5994

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/drill/pull/1069.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #1069
    
----
commit af4e99f16be4081f151024688d2fd5cd306b219b
Author: mitchel <mi...@hotmail.com>
Date:   2017-12-12T15:27:19Z

    DRILL-5994 Added webserver maxThreads configuration option to enable launching on a machine with more than 200 cores

----


> Cannot start web server on a machine with more than 200 cores
> -------------------------------------------------------------
>
>                 Key: DRILL-5994
>                 URL: https://issues.apache.org/jira/browse/DRILL-5994
>             Project: Apache Drill
>          Issue Type: Bug
>            Reporter: Mitchel Labonte
>            Priority: Minor
>
> If the WebServer is launched on a machine that has more than 200 cores, you get the following stack trace:
> {noformat}
> Exception in thread "main" org.apache.drill.exec.exception.DrillStartupException: Failure during initial startup of Drillbit:
> at org.apache.drill.exec.server.Drillbit.start(Drillbit.java:313)
> at org.apache.drill.exec.server.Drillbit.start(Drillbit.java:289)
> at org.apache.drill.exec.server.Drillbit.start(Drillbit.java:285)
> Caused by: java.lang.IllegalStateException: Insufficient max threads in ThreadPool: max=200 < needed=206
> at org.eclipse.jetty.server.Server.doStart(Server.java:321)
> at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:68)
> at org.eclipse.drill.exec.server.rest.WebServer.start(WebServer.java:197)
> at org.eclipse.drill.exec.server.Drillbit.run(Drillbit.java:140)
> at org.eclipse.drill.exec.server.Drillbit.start(Drillbit.java:309)
> ... 2 more
> {noformat}
> The cause of this is that in the WebServer start method, a Server instance is created with the default constructor, which initializes a QueuedThreadPool with a default maxThreads value of 200, and there is no way to configure this value.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)