io.atomix.protocols.raft.protocol.OpenSessionResponse Java Examples

The following examples show how to use io.atomix.protocols.raft.protocol.OpenSessionResponse. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: PassiveRole.java    From atomix with Apache License 2.0 6 votes vote down vote up
@Override
public CompletableFuture<OpenSessionResponse> onOpenSession(OpenSessionRequest request) {
  raft.checkThread();
  logRequest(request);

  if (raft.getLeader() == null) {
    return CompletableFuture.completedFuture(logResponse(OpenSessionResponse.builder()
        .withStatus(RaftResponse.Status.ERROR)
        .withError(RaftError.Type.NO_LEADER)
        .build()));
  } else {
    return forward(request, raft.getProtocol()::openSession)
        .exceptionally(error -> OpenSessionResponse.builder()
            .withStatus(RaftResponse.Status.ERROR)
            .withError(RaftError.Type.NO_LEADER)
            .build())
        .thenApply(this::logResponse);
  }
}
 
Example #2
Source File: RaftContext.java    From atomix with Apache License 2.0 6 votes vote down vote up
/**
 * Registers server handlers on the configured protocol.
 */
private void registerHandlers(RaftServerProtocol protocol) {
  protocol.registerOpenSessionHandler(request -> runOnContextIfReady(() -> role.onOpenSession(request), OpenSessionResponse::builder));
  protocol.registerCloseSessionHandler(request -> runOnContextIfReady(() -> role.onCloseSession(request), CloseSessionResponse::builder));
  protocol.registerKeepAliveHandler(request -> runOnContextIfReady(() -> role.onKeepAlive(request), KeepAliveResponse::builder));
  protocol.registerMetadataHandler(request -> runOnContextIfReady(() -> role.onMetadata(request), MetadataResponse::builder));
  protocol.registerConfigureHandler(request -> runOnContext(() -> role.onConfigure(request)));
  protocol.registerInstallHandler(request -> runOnContext(() -> role.onInstall(request)));
  protocol.registerJoinHandler(request -> runOnContext(() -> role.onJoin(request)));
  protocol.registerReconfigureHandler(request -> runOnContext(() -> role.onReconfigure(request)));
  protocol.registerLeaveHandler(request -> runOnContext(() -> role.onLeave(request)));
  protocol.registerTransferHandler(request -> runOnContext(() -> role.onTransfer(request)));
  protocol.registerAppendHandler(request -> runOnContext(() -> role.onAppend(request)));
  protocol.registerPollHandler(request -> runOnContext(() -> role.onPoll(request)));
  protocol.registerVoteHandler(request -> runOnContext(() -> role.onVote(request)));
  protocol.registerCommandHandler(request -> runOnContextIfReady(() -> role.onCommand(request), CommandResponse::builder));
  protocol.registerQueryHandler(request -> runOnContextIfReady(() -> role.onQuery(request), QueryResponse::builder));
}
 
Example #3
Source File: InactiveRole.java    From atomix with Apache License 2.0 5 votes vote down vote up
@Override
public CompletableFuture<OpenSessionResponse> onOpenSession(OpenSessionRequest request) {
  logRequest(request);
  return Futures.completedFuture(logResponse(OpenSessionResponse.builder()
      .withStatus(Status.ERROR)
      .withError(RaftError.Type.UNAVAILABLE)
      .build()));
}
 
Example #4
Source File: RaftSessionConnection.java    From atomix with Apache License 2.0 5 votes vote down vote up
/**
 * Sends an open session request to the given node.
 *
 * @param request the request to send
 * @return a future to be completed with the response
 */
public CompletableFuture<OpenSessionResponse> openSession(OpenSessionRequest request) {
  CompletableFuture<OpenSessionResponse> future = new CompletableFuture<>();
  if (context.isCurrentContext()) {
    sendRequest(request, protocol::openSession, future);
  } else {
    context.execute(() -> sendRequest(request, protocol::openSession, future));
  }
  return future;
}
 
Example #5
Source File: RaftServerCommunicator.java    From atomix with Apache License 2.0 4 votes vote down vote up
@Override
public CompletableFuture<OpenSessionResponse> openSession(MemberId memberId, OpenSessionRequest request) {
  return sendAndReceive(context.openSessionSubject, request, memberId);
}
 
Example #6
Source File: LocalRaftServerProtocol.java    From atomix with Apache License 2.0 4 votes vote down vote up
@Override
public void registerOpenSessionHandler(Function<OpenSessionRequest, CompletableFuture<OpenSessionResponse>> handler) {
  this.openSessionHandler = handler;
}
 
Example #7
Source File: LocalRaftServerProtocol.java    From atomix with Apache License 2.0 4 votes vote down vote up
@Override
public CompletableFuture<OpenSessionResponse> openSession(MemberId memberId, OpenSessionRequest request) {
  return getServer(memberId).thenCompose(listener -> listener.openSession(encode(request))).thenApply(this::decode);
}
 
Example #8
Source File: RaftServerMessagingProtocol.java    From atomix with Apache License 2.0 4 votes vote down vote up
@Override
public void registerOpenSessionHandler(Function<OpenSessionRequest, CompletableFuture<OpenSessionResponse>> handler) {
  registerHandler("open-session", handler);
}
 
Example #9
Source File: RaftServerMessagingProtocol.java    From atomix with Apache License 2.0 4 votes vote down vote up
@Override
public CompletableFuture<OpenSessionResponse> openSession(MemberId memberId, OpenSessionRequest request) {
  return sendAndReceive(memberId, "open-session", request);
}
 
Example #10
Source File: LocalRaftClientProtocol.java    From atomix with Apache License 2.0 4 votes vote down vote up
@Override
public CompletableFuture<OpenSessionResponse> openSession(MemberId memberId, OpenSessionRequest request) {
  return getServer(memberId).thenCompose(protocol -> protocol.openSession(encode(request))).thenApply(this::decode);
}
 
Example #11
Source File: RaftClientMessagingProtocol.java    From atomix with Apache License 2.0 4 votes vote down vote up
@Override
public CompletableFuture<OpenSessionResponse> openSession(MemberId memberId, OpenSessionRequest request) {
  return sendAndReceive(memberId, "open-session", request);
}
 
Example #12
Source File: LeaderRole.java    From atomix with Apache License 2.0 4 votes vote down vote up
@Override
public CompletableFuture<OpenSessionResponse> onOpenSession(OpenSessionRequest request) {
  final long term = raft.getTerm();
  final long timestamp = System.currentTimeMillis();
  final long minTimeout = request.minTimeout();

  // If the client submitted a session timeout, use the client's timeout, otherwise use the configured
  // default server session timeout.
  final long maxTimeout;
  if (request.maxTimeout() != 0) {
    maxTimeout = request.maxTimeout();
  } else {
    maxTimeout = raft.getSessionTimeout().toMillis();
  }

  raft.checkThread();
  logRequest(request);

  CompletableFuture<OpenSessionResponse> future = new CompletableFuture<>();
  appendAndCompact(new OpenSessionEntry(
      term,
      timestamp,
      request.node(),
      request.serviceName(),
      request.serviceType(),
      request.serviceConfig(),
      request.readConsistency(),
      minTimeout,
      maxTimeout))
      .whenCompleteAsync((entry, error) -> {
        if (error != null) {
          future.complete(logResponse(OpenSessionResponse.builder()
              .withStatus(RaftResponse.Status.ERROR)
              .withError(RaftError.Type.PROTOCOL_ERROR)
              .build()));
          return;
        }

        appender.appendEntries(entry.index()).whenComplete((commitIndex, commitError) -> {
          raft.checkThread();
          if (isRunning()) {
            if (commitError == null) {
              raft.getServiceManager().<Long>apply(entry.index()).whenComplete((sessionId, sessionError) -> {
                if (sessionError == null) {
                  future.complete(logResponse(OpenSessionResponse.builder()
                      .withStatus(RaftResponse.Status.OK)
                      .withSession(sessionId)
                      .withTimeout(maxTimeout)
                      .build()));
                } else if (sessionError instanceof CompletionException && sessionError.getCause() instanceof RaftException) {
                  future.complete(logResponse(OpenSessionResponse.builder()
                      .withStatus(RaftResponse.Status.ERROR)
                      .withError(((RaftException) sessionError.getCause()).getType(), sessionError.getMessage())
                      .build()));
                } else if (sessionError instanceof RaftException) {
                  future.complete(logResponse(OpenSessionResponse.builder()
                      .withStatus(RaftResponse.Status.ERROR)
                      .withError(((RaftException) sessionError).getType(), sessionError.getMessage())
                      .build()));
                } else {
                  future.complete(logResponse(OpenSessionResponse.builder()
                      .withStatus(RaftResponse.Status.ERROR)
                      .withError(RaftError.Type.PROTOCOL_ERROR, sessionError.getMessage())
                      .build()));
                }
              });
            } else {
              future.complete(logResponse(OpenSessionResponse.builder()
                  .withStatus(RaftResponse.Status.ERROR)
                  .withError(RaftError.Type.PROTOCOL_ERROR)
                  .build()));
            }
          } else {
            future.complete(logResponse(OpenSessionResponse.builder()
                .withStatus(RaftResponse.Status.ERROR)
                .withError(RaftError.Type.ILLEGAL_MEMBER_STATE)
                .build()));
          }
        });
      }, raft.getThreadContext());

  return future;
}
 
Example #13
Source File: RaftClientCommunicator.java    From atomix with Apache License 2.0 4 votes vote down vote up
@Override
public CompletableFuture<OpenSessionResponse> openSession(MemberId memberId, OpenSessionRequest request) {
  return sendAndReceive(context.openSessionSubject, request, memberId);
}
 
Example #14
Source File: RaftServerCommunicator.java    From atomix with Apache License 2.0 4 votes vote down vote up
@Override
public void registerOpenSessionHandler(Function<OpenSessionRequest, CompletableFuture<OpenSessionResponse>> handler) {
  clusterCommunicator.subscribe(context.openSessionSubject, serializer::decode, handler, serializer::encode);
}
 
Example #15
Source File: RaftClientMessagingProtocol.java    From submarine with Apache License 2.0 4 votes vote down vote up
@Override
public CompletableFuture<OpenSessionResponse> openSession(MemberId memberId,
                                                          OpenSessionRequest request) {
  return sendAndReceive(memberId, "open-session", request);
}
 
Example #16
Source File: LocalRaftServerProtocol.java    From zeppelin with Apache License 2.0 4 votes vote down vote up
@Override
public void registerOpenSessionHandler(Function<OpenSessionRequest,
    CompletableFuture<OpenSessionResponse>> handler) {
  this.openSessionHandler = handler;
}
 
Example #17
Source File: LocalRaftServerProtocol.java    From zeppelin with Apache License 2.0 4 votes vote down vote up
@Override
public CompletableFuture<OpenSessionResponse> openSession(MemberId memberId,
                                                          OpenSessionRequest request) {
  return getServer(memberId).thenCompose(listener ->
      listener.openSession(encode(request))).thenApply(this::decode);
}
 
Example #18
Source File: RaftServerMessagingProtocol.java    From zeppelin with Apache License 2.0 4 votes vote down vote up
@Override
public void registerOpenSessionHandler(Function<OpenSessionRequest,
    CompletableFuture<OpenSessionResponse>> handler) {
  registerHandler("open-session", handler);
}
 
Example #19
Source File: RaftServerMessagingProtocol.java    From zeppelin with Apache License 2.0 4 votes vote down vote up
@Override
public CompletableFuture<OpenSessionResponse> openSession(MemberId memberId,
                                                          OpenSessionRequest request) {
  return sendAndReceive(memberId, "open-session", request);
}
 
Example #20
Source File: LocalRaftClientProtocol.java    From zeppelin with Apache License 2.0 4 votes vote down vote up
@Override
public CompletableFuture<OpenSessionResponse> openSession(MemberId memberId,
                                                          OpenSessionRequest request) {
  return getServer(memberId).thenCompose(protocol ->
      protocol.openSession(encode(request))).thenApply(this::decode);
}
 
Example #21
Source File: RaftClientMessagingProtocol.java    From zeppelin with Apache License 2.0 4 votes vote down vote up
@Override
public CompletableFuture<OpenSessionResponse> openSession(MemberId memberId,
                                                          OpenSessionRequest request) {
  return sendAndReceive(memberId, "open-session", request);
}
 
Example #22
Source File: LocalRaftServerProtocol.java    From submarine with Apache License 2.0 4 votes vote down vote up
@Override
public void registerOpenSessionHandler(Function<OpenSessionRequest,
    CompletableFuture<OpenSessionResponse>> handler) {
  this.openSessionHandler = handler;
}
 
Example #23
Source File: LocalRaftServerProtocol.java    From submarine with Apache License 2.0 4 votes vote down vote up
@Override
public CompletableFuture<OpenSessionResponse> openSession(MemberId memberId,
                                                          OpenSessionRequest request) {
  return getServer(memberId).thenCompose(listener ->
      listener.openSession(encode(request))).thenApply(this::decode);
}
 
Example #24
Source File: RaftServerMessagingProtocol.java    From submarine with Apache License 2.0 4 votes vote down vote up
@Override
public void registerOpenSessionHandler(Function<OpenSessionRequest,
    CompletableFuture<OpenSessionResponse>> handler) {
  registerHandler("open-session", handler);
}
 
Example #25
Source File: RaftServerMessagingProtocol.java    From submarine with Apache License 2.0 4 votes vote down vote up
@Override
public CompletableFuture<OpenSessionResponse> openSession(MemberId memberId,
                                                          OpenSessionRequest request) {
  return sendAndReceive(memberId, "open-session", request);
}
 
Example #26
Source File: LocalRaftClientProtocol.java    From submarine with Apache License 2.0 4 votes vote down vote up
@Override
public CompletableFuture<OpenSessionResponse> openSession(MemberId memberId,
                                                          OpenSessionRequest request) {
  return getServer(memberId).thenCompose(protocol ->
      protocol.openSession(encode(request))).thenApply(this::decode);
}
 
Example #27
Source File: RaftRole.java    From atomix with Apache License 2.0 2 votes vote down vote up
/**
 * Handles an open session request.
 *
 * @param request The request to handle.
 * @return A completable future to be completed with the request response.
 */
CompletableFuture<OpenSessionResponse> onOpenSession(OpenSessionRequest request);