You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Vladislav Pyatkov (Jira)" <ji...@apache.org> on 2021/11/02 12:26:00 UTC

[jira] [Commented] (IGNITE-15581) Proper business-logic exception propagation from raft listener to client code

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

Vladislav Pyatkov commented on IGNITE-15581:
--------------------------------------------

In general, PR is looked good.
I left only one comment about logging a warning when we cannot create the similar exception class (as it was thrown).

> Proper business-logic exception propagation from raft listener to client code
> -----------------------------------------------------------------------------
>
>                 Key: IGNITE-15581
>                 URL: https://issues.apache.org/jira/browse/IGNITE-15581
>             Project: Ignite
>          Issue Type: Improvement
>            Reporter: Alexander Lapin
>            Assignee: Mirza Aliev
>            Priority: Major
>              Labels: ignite-3
>          Time Spent: 40m
>  Remaining Estimate: 0h
>
> *Problem.*
> In case of business logic exceptions thrown from within raft listeners it's recommended to  use 
> {code:java}
> clo.result(throwable)
> {code}
> Such throwable is propagated to raft client in ActionResponse container and later on competes client future in common but not an exceptional way (which is a problem):
> {code:java}
>         return fut.thenApply(resp -> (R) resp.result());
> {code}
> {code:java}
>     @Override public <R> CompletableFuture<R> run(Command cmd) {
>         Peer leader = this.leader;
>         if (leader == null)
>             return refreshLeader().thenCompose(res -> run(cmd));
>         ActionRequest req = factory.actionRequest().command(cmd).groupId(groupId).readOnlySafe(true).build();
>         CompletableFuture<ActionResponse> fut = new CompletableFuture<>();
>         sendWithRetry(leader, req, currentTimeMillis() + timeout, fut);
>         return fut.thenApply(resp -> (R) resp.result());
>     }
> {code}
> Client future usually have some specific generic type, for example CompletableFuture<Void>, that doesn't match an exception, so client future is completed exceptionally with ClassCastException with the cause of initial server side throwable.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)