Search in sources :

Example 1 with InvokeContext

use of io.dingodb.raft.rpc.InvokeContext in project dingo by dingodb.

the class DefaultDingoRowStoreRpcService method internalCallAsyncWithRpc.

private <V> void internalCallAsyncWithRpc(final Endpoint endpoint, final BaseRequest request, final FailoverClosure<V> closure) {
    final InvokeContext invokeCtx = new InvokeContext();
    invokeCtx.put(BoltRpcClient.BOLT_CTX, ExtSerializerSupports.getInvokeContext());
    final InvokeCallback invokeCallback = new InvokeCallback() {

        @Override
        public void complete(final Object result, final Throwable err) {
            if (err == null) {
                final BaseResponse<?> response = (BaseResponse<?>) result;
                if (response.isSuccess()) {
                    closure.setData(response.getValue());
                    closure.run(Status.OK());
                } else {
                    closure.setError(response.getError());
                    closure.run(new Status(-1, "RPC failed with address: %s, response: %s", endpoint, response));
                }
            } else {
                closure.failure(err);
            }
        }

        @Override
        public Executor executor() {
            return rpcCallbackExecutor;
        }
    };
    try {
        this.rpcClient.invokeAsync(endpoint, request, invokeCtx, invokeCallback, this.rpcTimeoutMillis);
    } catch (final Throwable t) {
        closure.failure(t);
    }
}
Also used : Status(io.dingodb.raft.Status) BaseResponse(io.dingodb.store.row.cmd.store.BaseResponse) InvokeContext(io.dingodb.raft.rpc.InvokeContext) InvokeCallback(io.dingodb.raft.rpc.InvokeCallback)

Example 2 with InvokeContext

use of io.dingodb.raft.rpc.InvokeContext in project dingo by dingodb.

the class DefaultPlacementDriverRpcService method internalCallPdWithRpc.

private <V> void internalCallPdWithRpc(final Endpoint endpoint, final BaseRequest request, final FailoverClosure<V> closure) {
    final InvokeContext invokeCtx = new InvokeContext();
    invokeCtx.put(BoltRpcClient.BOLT_CTX, ExtSerializerSupports.getInvokeContext());
    final InvokeCallback invokeCallback = new InvokeCallback() {

        @Override
        public void complete(final Object result, final Throwable err) {
            if (err == null) {
                final BaseResponse<?> response = (BaseResponse<?>) result;
                if (response.isSuccess()) {
                    closure.setData(response.getValue());
                    closure.run(Status.OK());
                } else {
                    closure.setError(response.getError());
                    closure.run(new Status(-1, "RPC failed with address: %s, response: %s", endpoint, response));
                }
            } else {
                closure.failure(err);
            }
        }

        @Override
        public Executor executor() {
            return rpcCallbackExecutor;
        }
    };
    try {
        this.rpcClient.invokeAsync(endpoint, request, invokeCtx, invokeCallback, this.rpcTimeoutMillis);
    } catch (final Throwable t) {
        closure.failure(t);
    }
}
Also used : Status(io.dingodb.raft.Status) BaseResponse(io.dingodb.store.row.cmd.pd.BaseResponse) InvokeContext(io.dingodb.raft.rpc.InvokeContext) InvokeCallback(io.dingodb.raft.rpc.InvokeCallback)

Example 3 with InvokeContext

use of io.dingodb.raft.rpc.InvokeContext in project dingo by dingodb.

the class DefaultRaftClientService method getFile.

@Override
public Future<Message> getFile(final Endpoint endpoint, final RpcRequests.GetFileRequest request, final int timeoutMs, final RpcResponseClosure<RpcRequests.GetFileResponse> done) {
    // open checksum
    final InvokeContext ctx = new InvokeContext();
    ctx.put(InvokeContext.CRC_SWITCH, true);
    return invokeWithDone(endpoint, request, ctx, done, timeoutMs);
}
Also used : InvokeContext(io.dingodb.raft.rpc.InvokeContext)

Aggregations

InvokeContext (io.dingodb.raft.rpc.InvokeContext)3 Status (io.dingodb.raft.Status)2 InvokeCallback (io.dingodb.raft.rpc.InvokeCallback)2 BaseResponse (io.dingodb.store.row.cmd.pd.BaseResponse)1 BaseResponse (io.dingodb.store.row.cmd.store.BaseResponse)1