You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Alexander Lapin (Jira)" <ji...@apache.org> on 2022/10/04 15:40:00 UTC

[jira] [Created] (IGNITE-17824) Use named executor instead of default one in order to process replica Response

Alexander Lapin created IGNITE-17824:
----------------------------------------

             Summary: Use named executor instead of default one in order to process replica Response
                 Key: IGNITE-17824
                 URL: https://issues.apache.org/jira/browse/IGNITE-17824
             Project: Ignite
          Issue Type: Improvement
            Reporter: Alexander Lapin


Within ReplicaService.sendToReplica
{code:java}
private <R> CompletableFuture<R> sendToReplica(ClusterNode node, ReplicaRequest req) {

    CompletableFuture<R> res = new CompletableFuture<>();

    messagingService.invoke(node.address(), req, RPC_TIMEOUT).whenCompleteAsync((response, throwable) -> { {code}
named executor should be used instead of default one.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)