
org.apache.curator.ConnectionState Maven / Gradle / Ivy
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.curator;
import java.io.Closeable;
import java.io.IOException;
import java.util.Queue;
import java.util.concurrent.ConcurrentLinkedQueue;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.concurrent.atomic.AtomicLong;
import java.util.concurrent.atomic.AtomicReference;
import org.apache.curator.drivers.EventTrace;
import org.apache.curator.drivers.OperationTrace;
import org.apache.curator.drivers.TracerDriver;
import org.apache.curator.ensemble.EnsembleProvider;
import org.apache.curator.utils.CloseableUtils;
import org.apache.curator.utils.DebugUtils;
import org.apache.curator.utils.ThreadUtils;
import org.apache.curator.utils.ZookeeperFactory;
import org.apache.zookeeper.WatchedEvent;
import org.apache.zookeeper.Watcher;
import org.apache.zookeeper.ZooKeeper;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
class ConnectionState implements Watcher, Closeable {
private static final int MAX_BACKGROUND_EXCEPTIONS = 10;
private static final boolean LOG_EVENTS = Boolean.getBoolean(DebugUtils.PROPERTY_LOG_EVENTS);
private static final Logger log = LoggerFactory.getLogger(ConnectionState.class);
private final HandleHolder handleHolder;
private final AtomicBoolean isConnected = new AtomicBoolean(false);
private final AtomicInteger lastNegotiatedSessionTimeoutMs = new AtomicInteger(0);
private final EnsembleProvider ensembleProvider;
private final AtomicReference tracer;
private final Queue backgroundExceptions = new ConcurrentLinkedQueue();
private final Queue parentWatchers = new ConcurrentLinkedQueue();
private final AtomicLong instanceIndex = new AtomicLong();
private volatile long connectionStartMs = 0;
ConnectionState(
ZookeeperFactory zookeeperFactory,
EnsembleProvider ensembleProvider,
int sessionTimeoutMs,
Watcher parentWatcher,
AtomicReference tracer,
boolean canBeReadOnly) {
this.ensembleProvider = ensembleProvider;
this.tracer = tracer;
if (parentWatcher != null) {
parentWatchers.offer(parentWatcher);
}
handleHolder = new HandleHolder(zookeeperFactory, this, ensembleProvider, sessionTimeoutMs, canBeReadOnly);
}
ZooKeeper getZooKeeper() throws Exception {
if (SessionFailRetryLoop.sessionForThreadHasFailed()) {
throw new SessionFailRetryLoop.SessionFailedException();
}
Exception exception = backgroundExceptions.poll();
if (exception != null) {
new EventTrace("background-exceptions", tracer.get()).commit();
throw exception;
}
boolean localIsConnected = isConnected.get();
if (!localIsConnected) {
checkNewConnectionString();
}
return handleHolder.getZooKeeper();
}
boolean isConnected() {
return isConnected.get();
}
void start() throws Exception {
log.debug("Starting");
ensembleProvider.start();
reset();
}
@Override
public void close() throws IOException {
close(0);
}
public void close(int waitForShutdownTimeoutMs) throws IOException {
log.debug("Closing");
CloseableUtils.closeQuietly(ensembleProvider);
try {
handleHolder.closeAndClear(waitForShutdownTimeoutMs);
} catch (Exception e) {
ThreadUtils.checkInterrupted(e);
throw new IOException(e);
} finally {
isConnected.set(false);
}
}
void addParentWatcher(Watcher watcher) {
parentWatchers.offer(watcher);
}
void removeParentWatcher(Watcher watcher) {
parentWatchers.remove(watcher);
}
long getInstanceIndex() {
return instanceIndex.get();
}
int getLastNegotiatedSessionTimeoutMs() {
return lastNegotiatedSessionTimeoutMs.get();
}
@Override
public void process(WatchedEvent event) {
if (LOG_EVENTS) {
log.debug("ConnectState watcher: " + event);
}
if (event.getType() == Watcher.Event.EventType.None) {
boolean wasConnected = isConnected.get();
boolean newIsConnected = checkState(event.getState(), wasConnected);
if (newIsConnected != wasConnected) {
isConnected.set(newIsConnected);
connectionStartMs = System.currentTimeMillis();
if (newIsConnected) {
lastNegotiatedSessionTimeoutMs.set(handleHolder.getNegotiatedSessionTimeoutMs());
log.debug("Negotiated session timeout: " + lastNegotiatedSessionTimeoutMs.get());
}
}
}
for (Watcher parentWatcher : parentWatchers) {
OperationTrace trace = new OperationTrace("connection-state-parent-process", tracer.get(), getSessionId());
parentWatcher.process(event);
trace.commit();
}
}
EnsembleProvider getEnsembleProvider() {
return ensembleProvider;
}
synchronized void reset() throws Exception {
log.debug("reset");
instanceIndex.incrementAndGet();
isConnected.set(false);
connectionStartMs = System.currentTimeMillis();
handleHolder.closeAndReset();
handleHolder.getZooKeeper(); // initiate connection
}
private synchronized void checkNewConnectionString() {
final String newConnectionString = handleHolder.getNewConnectionString();
if (newConnectionString != null) {
handleNewConnectionString(newConnectionString);
}
}
/**
* Return the current session id
*/
public long getSessionId() {
long sessionId = 0;
try {
ZooKeeper zk = handleHolder.getZooKeeper();
if (zk != null) {
sessionId = zk.getSessionId();
}
} catch (Exception e) {
// Ignore the exception
}
return sessionId;
}
private boolean checkState(Event.KeeperState state, boolean wasConnected) {
boolean isConnected = wasConnected;
boolean checkNewConnectionString = true;
switch (state) {
default:
case Disconnected: {
isConnected = false;
break;
}
case SyncConnected:
case ConnectedReadOnly: {
isConnected = true;
break;
}
case AuthFailed: {
isConnected = false;
log.error("Authentication failed");
break;
}
case Expired: {
isConnected = false;
checkNewConnectionString = false;
handleExpiredSession();
break;
}
case SaslAuthenticated: {
// NOP
break;
}
}
// the session expired is logged in handleExpiredSession, so not log here
if (state != Event.KeeperState.Expired) {
new EventTrace(state.toString(), tracer.get(), getSessionId()).commit();
}
if (checkNewConnectionString) {
String newConnectionString = handleHolder.getNewConnectionString();
if (newConnectionString != null) {
handleNewConnectionString(newConnectionString);
}
}
return isConnected;
}
private void handleNewConnectionString(String newConnectionString) {
log.info("Connection string changed to: " + newConnectionString);
new EventTrace("connection-string-changed", tracer.get(), getSessionId()).commit();
try {
ZooKeeper zooKeeper = handleHolder.getZooKeeper();
if (zooKeeper == null) {
log.warn("Could not update the connection string because getZooKeeper() returned null.");
} else {
if (ensembleProvider.updateServerListEnabled()) {
zooKeeper.updateServerList(newConnectionString);
handleHolder.resetConnectionString(newConnectionString);
} else {
reset();
}
}
} catch (Exception e) {
ThreadUtils.checkInterrupted(e);
queueBackgroundException(e);
}
}
private void handleExpiredSession() {
log.warn("Session expired event received");
new EventTrace("session-expired", tracer.get(), getSessionId()).commit();
try {
reset();
} catch (Exception e) {
ThreadUtils.checkInterrupted(e);
queueBackgroundException(e);
}
}
@SuppressWarnings({"ThrowableResultOfMethodCallIgnored"})
private void queueBackgroundException(Exception e) {
while (backgroundExceptions.size() >= MAX_BACKGROUND_EXCEPTIONS) {
backgroundExceptions.poll();
}
backgroundExceptions.offer(e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy