All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.ydb.coordination.impl.SessionImpl Maven / Gradle / Ivy

There is a newer version: 2.3.6
Show newest version
package tech.ydb.coordination.impl;

import java.time.Clock;
import java.time.Duration;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.Executor;
import java.util.concurrent.ForkJoinPool;
import java.util.concurrent.ThreadLocalRandom;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicReference;
import java.util.function.Consumer;
import java.util.function.Function;

import com.google.protobuf.ByteString;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import tech.ydb.common.retry.RetryPolicy;
import tech.ydb.coordination.CoordinationSession;
import tech.ydb.coordination.SemaphoreLease;
import tech.ydb.coordination.description.SemaphoreDescription;
import tech.ydb.coordination.description.SemaphoreWatcher;
import tech.ydb.coordination.settings.CoordinationSessionSettings;
import tech.ydb.coordination.settings.DescribeSemaphoreMode;
import tech.ydb.coordination.settings.WatchSemaphoreMode;
import tech.ydb.core.Issue;
import tech.ydb.core.Result;
import tech.ydb.core.Status;
import tech.ydb.core.StatusCode;


/**
 *
 * @author Aleksandr Gorshenin
 */
class SessionImpl implements CoordinationSession {
    private static final Logger logger = LoggerFactory.getLogger(CoordinationSession.class);

    private final Rpc rpc;
    private final Clock clock;
    private final Executor executor;
    private final RetryPolicy retryPolicy;

    private final String nodePath;
    private final Duration connectTimeout;
    private final ByteString protectionKey;

    private final Map, Consumer> listeners = new ConcurrentHashMap<>();
    private final AtomicReference state = new AtomicReference<>(SessionState.unstarted());

    SessionImpl(Rpc rpc, Clock clock, String nodePath, CoordinationSessionSettings settings) {
        this.rpc = rpc;
        this.clock = clock;
        this.executor = settings.getExecutor() != null ? settings.getExecutor() : ForkJoinPool.commonPool();
        this.retryPolicy = settings.getRetryPolicy();

        this.nodePath = nodePath;
        this.connectTimeout = settings.getConnectTimeout();
        this.protectionKey = createRandomKey();
    }

    @Override
    public long getId() {
        return state.get().getSessionId();
    }

    @Override
    public State getState() {
        return state.get().getState();
    }

    @Override
    public String toString() {
        return state.get().toString();
    }

    @Override
    public void addStateListener(Consumer listener) {
        if (listener != null) {
            listeners.put(listener, listener);
        }
    }

    @Override
    public void removeStateListener(Consumer listener) {
        listeners.remove(listener);
    }

    @Override
    public CompletableFuture stop() {
        logger.debug("{} stopped", this);

        SessionState local = state.get();
        while (!updateState(local, SessionState.closed())) {
            local = state.get();
        }

        return local.stop();
    }

    @Override
    public CompletableFuture connect() {
        SessionState local = state.get();
        // create new stream to connect
        final Stream stream = new Stream(rpc);
        if (!updateState(local, makeConnectionState(local, stream))) {
            logger.warn("{} cannot be connected with state {}", this, local.getState());
            return CompletableFuture.completedFuture(Status.of(StatusCode.BAD_REQUEST));
        }

        // start stream and send start session message
        return connectToSession(stream, 0)
                .thenApplyAsync(res -> establishNewSession(res, stream, Collections.emptyList()), executor);
    }

    private CompletableFuture> connectToSession(Stream stream, long sessionID) {
        // start new stream
        stream.startStream().whenCompleteAsync((status, th) -> {
            // this handler is executed when stream finishes
            // we have some action to do here

            // first: logging
            if (th != null) {
                logger.warn("{} stream finished with exception", SessionImpl.this, th);
            }

            if (status != null) {
                if (status.isSuccess()) {
                    logger.debug("{} stream finished with status {}", SessionImpl.this, status);
                } else {
                    logger.warn("{} stream finished with status {}", SessionImpl.this, status);
                }
            }

            // second: store idempotent messages and complete others with error
            List> messagesToRetry = new ArrayList<>();
            for (StreamMsg msg: stream.getMessages()) {
                if (msg.isIdempotent()) {
                    messagesToRetry.add(msg);
                } else {
                    completeMessageWithBadSession(msg);
                }
            }

            // third: is current state is recoverable - try to restore session
            SessionState local = state.get();
            boolean recoverableState = local.getState() == State.CONNECTED || local.getState() == State.RECONNECTING;
            if (recoverableState && local.hasStream(stream)) {
                logger.debug("stream {} starts to recover");
                long disconnectedAt = clock.millis();
                restoreSession(disconnectedAt, 0, messagesToRetry);
            } else {
                // else complete idempotent messages too
                completeMessagesWithBadSession(messagesToRetry);
                updateState(local, makeLostState(local));
            }
        }, executor);

        // and send session start message with id of previos session (or zero if it's first connect)
        return stream.sendSessionStart(sessionID, nodePath, connectTimeout, protectionKey);
    }

    private void reconnect(Stream stream, long disconnectedAt, int retryNum, List> messagesToRetry) {
        SessionState local = state.get();
        if (local.getState() != State.RECONNECTING || !local.hasStream(stream)) {
            completeMessagesWithBadSession(messagesToRetry);
            return;
        }

        connectToSession(stream, local.getSessionId()).whenCompleteAsync((res, th) -> {
            if (res != null && res.isSuccess()) {
                establishNewSession(res, stream, messagesToRetry);
                return;
            }

            if (th != null) {
                logger.warn("{} stream retry {} finished with exception", SessionImpl.this, retryNum, th);
            }

            if (res != null) {
                logger.debug("{} stream retry {} finished with status {}", SessionImpl.this, retryNum, res.getStatus());
            }

            SessionState localState = state.get();
            boolean recoverable = localState.getState() == State.RECONNECTING;
            if (recoverable && local.hasStream(stream)) {
                restoreSession(disconnectedAt, retryNum + 1, messagesToRetry);
            } else {
                completeMessagesWithBadSession(messagesToRetry);
            }
        }, executor);
    }

    private void restoreSession(long disconnectedAt, int retryCount, List> messagesToRetry) {
        SessionState local = state.get();
        if (local.getState() != State.CONNECTED && local.getState() != State.RECONNECTING) {
            completeMessagesWithBadSession(messagesToRetry);
            return;
        }

        long elapsedTimeMs = clock.millis() - disconnectedAt;
        long retryInMs = retryPolicy.nextRetryMs(retryCount, elapsedTimeMs);
        if (retryInMs < 0) {
            logger.debug("stream {} lost connection by retry policy");
            updateState(local, makeLostState(local));
            completeMessagesWithBadSession(messagesToRetry);
            return;
        }

        Stream stream = new Stream(rpc);
        if (!updateState(local, makeConnectionState(local, stream))) {
            logger.warn("{} cannot be reconnected with state {}", this, state.get().getState());
            completeMessagesWithBadSession(messagesToRetry);
            return;
        }

        if (retryInMs > 0) {
            logger.debug("stream {} shedule next retry {} in {} ms", this, retryCount, retryInMs);
            rpc.getScheduler().schedule(
                    () -> reconnect(stream, disconnectedAt, retryCount, messagesToRetry),
                    retryInMs,
                    TimeUnit.MILLISECONDS
            );
        } else {
            logger.debug("stream {} immediatelly retry {}", this, retryCount);
            reconnect(stream, disconnectedAt, retryCount, messagesToRetry);
        }
    }

    private Status establishNewSession(Result result, Stream stream, List> messagesToRetry) {
        if (!result.isSuccess()) {
            return result.getStatus();
        }

        SessionState local = state.get();
        SessionState connected = makeConnectedState(local, result.getValue(), stream);
        if (!updateState(local, connected)) {
            stream.stop();
            return Status.of(
                    StatusCode.CANCELLED, Issue.of("{} cannot handle successful session", Issue.Severity.ERROR)
            );
        }

        for (StreamMsg msg: messagesToRetry) {
            connected.sendMessage(msg);
        }

        return Status.SUCCESS;
    }

    private SessionState makeConnectionState(SessionState local, Stream stream) {
        if (local.getState() == State.INITIAL) {
            return SessionState.connecting(stream);
        }
        if (local.getState() == State.LOST) {
            return SessionState.reconnecting(stream);
        }
        if (local.getState() == State.CONNECTED || local.getState() == State.RECONNECTING) {
            return SessionState.disconnected(local, stream);
        }
        return null;
    }

    private SessionState makeConnectedState(SessionState local, long id, Stream stream) {
        if (local.getState() == State.CONNECTING && local.hasStream(stream)) {
            return SessionState.connected(local, id);
        }
        if (local.getState() == State.RECONNECTING && local.hasStream(stream)) {
            return SessionState.reconnected(local);
        }

        return null;
    }

    private SessionState makeLostState(SessionState local) {
        if (local.getState() == State.CONNECTING) {
            return SessionState.unstarted();
        }
        if (local.getState() == State.RECONNECTING) {
            return SessionState.lost();
        }

        return null;
    }

    private boolean updateState(SessionState previous, SessionState next) {
        if (next == null || !state.compareAndSet(previous, next)) {
            return false;
        }

        if (next.getState() != previous.getState()) {
            for (Consumer listener: listeners.values()) {
                listener.accept(next.getState());
            }
        }
        return true;
    }

    @Override
    public CompletableFuture createSemaphore(String name, long limit, byte[] data) {
        StreamMsg msg = StreamMsg.createSemaphore(name, limit, data);
        state.get().sendMessage(msg);
        return msg.getResult().thenApplyAsync(Function.identity(), executor);
    }

    @Override
    public CompletableFuture updateSemaphore(String name, byte[] data) {
        StreamMsg msg = StreamMsg.updateSemaphore(name, data);
        state.get().sendMessage(msg);
        return msg.getResult().thenApplyAsync(Function.identity(), executor);
    }

    @Override
    public CompletableFuture deleteSemaphore(String name, boolean force) {
        StreamMsg msg = StreamMsg.deleteSemaphore(name, force);
        state.get().sendMessage(msg);
        return msg.getResult().thenApplyAsync(Function.identity(), executor);
    }

    @Override
    public CompletableFuture> describeSemaphore(String name, DescribeSemaphoreMode mode) {
        StreamMsg> msg = StreamMsg.describeSemaphore(name, mode);
        state.get().sendMessage(msg);
        return msg.getResult().thenApplyAsync(Function.identity(), executor);
    }

    @Override
    public CompletableFuture> watchSemaphore(String name,
            DescribeSemaphoreMode describeMode, WatchSemaphoreMode watchMode) {
        StreamMsg> msg = StreamMsg.watchSemaphore(name, describeMode, watchMode);
        state.get().sendMessage(msg);
        return msg.getResult().thenApplyAsync(Function.identity(), executor);
    }

    @Override
    public CompletableFuture> acquireSemaphore(String name, long count, byte[] data,
            Duration timeout) {
        StreamMsg> msg = StreamMsg.acquireSemaphore(name, count, data, false, timeout.toMillis());
        state.get().sendMessage(msg);
        return msg.getResult().thenApplyAsync(new LeaseCreator(name), executor);
    }

    @Override
    public CompletableFuture> acquireEphemeralSemaphore(String name, boolean exclusive,
            byte[] data, Duration timeout) {
        long count = exclusive ? -1L : 1L;
        StreamMsg> msg = StreamMsg.acquireSemaphore(name, count, data, true, timeout.toMillis());
        state.get().sendMessage(msg);
        return msg.getResult().thenApplyAsync(new LeaseCreator(name), executor);
    }

    CompletableFuture releaseSemaphore(String name) {
        StreamMsg> msg = StreamMsg.releaseSemaphore(name);
        state.get().sendMessage(msg);
        return msg.getResult().thenApplyAsync(result -> result.isSuccess() && result.getValue(), executor);
    }

    private static void completeMessageWithBadSession(StreamMsg msg) {
        StreamMsg local = msg;
        while (local != null) {
            local.handleError(Status.of(StatusCode.BAD_SESSION));
            local = local.nextMsg();
        }
    }

    private static void completeMessagesWithBadSession(Collection> messages) {
        for (StreamMsg msg: messages) {
            completeMessageWithBadSession(msg);
        }
    }

    private static ByteString createRandomKey() {
        byte[] protectionKey = new byte[16];
        ThreadLocalRandom.current().nextBytes(protectionKey);
        return ByteString.copyFrom(protectionKey);
    }

    private class LeaseCreator implements Function, Result> {
        private final String name;

        LeaseCreator(String name) {
            this.name = name;
        }

        @Override
        public Result apply(Result acquireResult) {
            if (!acquireResult.isSuccess()) {
                return acquireResult.map(null);
            }
            if (!acquireResult.getValue()) {
                return Result.fail(Status.of(StatusCode.TIMEOUT));
            }

            return Result.success(new LeaseImpl(SessionImpl.this, name));
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy