You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ignite.apache.org by "Vladimir Ozerov (JIRA)" <ji...@apache.org> on 2017/02/14 14:23:41 UTC

[jira] [Created] (IGNITE-4699) Introduce custom configurable executors.

Vladimir Ozerov created IGNITE-4699:
---------------------------------------

             Summary: Introduce custom configurable executors.
                 Key: IGNITE-4699
                 URL: https://issues.apache.org/jira/browse/IGNITE-4699
             Project: Ignite
          Issue Type: Task
          Components: compute
            Reporter: Vladimir Ozerov
             Fix For: 2.0


We need to provide a way to configure custom thread pools for user compute tasks. 

Proposed API:

1) Config
{code}
class ExecutorConfiguration {
    String name;
    int size;
}
{code}
2) Choosing executor for compute task:
{code}
IgniteCompute compute = Ignite.compute().withExecutor("my_exec");
{code}
3) Accessing raw executor (could be required for proper execution of future listeners):
{code}
ThreadPoolExecutor exec = ignite.compute().localExecutor("my_exec");
{code}



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