You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Andrea Cosentino (JIRA)" <ji...@apache.org> on 2017/02/22 07:36:44 UTC

[jira] [Assigned] (CAMEL-10874) JettyHttpComponent sets selector threads to 0 when running on 1 CPU

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

Andrea Cosentino reassigned CAMEL-10874:
----------------------------------------

    Assignee: Andrea Cosentino

> JettyHttpComponent sets selector threads to 0 when running on 1 CPU
> -------------------------------------------------------------------
>
>                 Key: CAMEL-10874
>                 URL: https://issues.apache.org/jira/browse/CAMEL-10874
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-jetty
>    Affects Versions: 2.16.5, 2.17.5, 2.18.2
>            Reporter: Nick Houghton
>            Assignee: Andrea Cosentino
>
> In JettyHttpComponent, "createHttpClientTransport" method the number of selectors is derived by:
> {noformat}
> int selectors = Runtime.getRuntime().availableProcessors() / 2;
> {noformat}
> If the number of available processors is 1, divided by 2, cast to int is 0 which causes an IllegalArgumentException.
> The safe way to do this is via Math.max, like the Jetty code does:
> {noformat}
> int selector = Math.max(1, Runtime.getRuntime().availableProcessors() / 2);
> {noformat}
> As per the code this is only exercised when maxThreads is not null, otherwise the default constructor is called and selectors are created properly.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)