Package org.apache.zookeeper.server
Class SessionTrackerImpl
- java.lang.Object
-
- java.lang.Thread
-
- org.apache.zookeeper.server.ZooKeeperThread
-
- org.apache.zookeeper.server.ZooKeeperCriticalThread
-
- org.apache.zookeeper.server.SessionTrackerImpl
-
- All Implemented Interfaces:
Runnable
,SessionTracker
- Direct Known Subclasses:
LocalSessionTracker
public class SessionTrackerImpl extends ZooKeeperCriticalThread implements SessionTracker
This is a full featured SessionTracker. It tracks session in grouped by tick interval. It always rounds up the tick interval to provide a sort of grace period. Sessions are thus expired in batches made up of sessions that expire in a given interval.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SessionTrackerImpl.SessionImpl
-
Nested classes/interfaces inherited from class java.lang.Thread
Thread.State, Thread.UncaughtExceptionHandler
-
Nested classes/interfaces inherited from interface org.apache.zookeeper.server.SessionTracker
SessionTracker.Session, SessionTracker.SessionExpirer
-
-
Field Summary
Fields Modifier and Type Field Description protected ConcurrentHashMap<Long,SessionTrackerImpl.SessionImpl>
sessionsById
protected ConcurrentMap<Long,Integer>
sessionsWithTimeout
-
Fields inherited from class java.lang.Thread
MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY
-
-
Constructor Summary
Constructors Constructor Description SessionTrackerImpl(SessionTracker.SessionExpirer expirer, ConcurrentMap<Long,Integer> sessionsWithTimeout, int tickTime, long serverId, ZooKeeperServerListener listener)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
checkGlobalSession(long sessionId, Object owner)
Strictly check that a given session is a global session or notvoid
checkSession(long sessionId, Object owner)
Checks whether the SessionTracker is aware of this session, the session is still active, and the owner matches.boolean
commitSession(long id, int sessionTimeout)
Add the session to the local session map or global one in zkDB.long
createSession(int sessionTimeout)
void
dumpSessions(PrintWriter pwriter)
Text dump of session information, suitable for debugging.long
getLocalSessionCount()
If this session tracker supports local sessions, return how many.Map<Long,Set<Long>>
getSessionExpiryMap()
Returns a mapping from time to session IDs of sessions expiring at that time.int
getSessionTimeout(long sessionId)
Set<Long>
globalSessions()
Get a set of global session IDsstatic long
initializeNextSessionId(long id)
Generates an initial sessionId.boolean
isLocalSessionsEnabled()
boolean
isTrackingSession(long sessionId)
Set<Long>
localSessions()
Get a set of local session IDsvoid
removeSession(long sessionId)
void
run()
void
setOwner(long id, Object owner)
void
setSessionClosing(long sessionId)
Mark that the session is in the process of closing.void
shutdown()
String
toString()
boolean
touchSession(long sessionId, int timeout)
boolean
trackSession(long id, int sessionTimeout)
Track the session expire, not add to ZkDb.-
Methods inherited from class org.apache.zookeeper.server.ZooKeeperCriticalThread
handleException
-
Methods inherited from class java.lang.Thread
activeCount, checkAccess, clone, countStackFrames, currentThread, destroy, dumpStack, enumerate, getAllStackTraces, getContextClassLoader, getDefaultUncaughtExceptionHandler, getId, getName, getPriority, getStackTrace, getState, getThreadGroup, getUncaughtExceptionHandler, holdsLock, interrupt, interrupted, isAlive, isDaemon, isInterrupted, join, join, join, resume, setContextClassLoader, setDaemon, setDefaultUncaughtExceptionHandler, setName, setPriority, setUncaughtExceptionHandler, sleep, sleep, start, stop, stop, suspend, yield
-
-
-
-
Field Detail
-
sessionsById
protected final ConcurrentHashMap<Long,SessionTrackerImpl.SessionImpl> sessionsById
-
sessionsWithTimeout
protected final ConcurrentMap<Long,Integer> sessionsWithTimeout
-
-
Constructor Detail
-
SessionTrackerImpl
public SessionTrackerImpl(SessionTracker.SessionExpirer expirer, ConcurrentMap<Long,Integer> sessionsWithTimeout, int tickTime, long serverId, ZooKeeperServerListener listener)
-
-
Method Detail
-
initializeNextSessionId
public static long initializeNextSessionId(long id)
Generates an initial sessionId.High order 1 byte is serverId, next 5 bytes are from timestamp, and low order 2 bytes are 0s. Use ">>> 8", not ">> 8" to make sure that the high order 1 byte is entirely up to the server Id.
See also http://jira.apache.org/jira/browse/ZOOKEEPER-1622
- Parameters:
id
- server Id- Returns:
- the session Id
-
dumpSessions
public void dumpSessions(PrintWriter pwriter)
Description copied from interface:SessionTracker
Text dump of session information, suitable for debugging.- Specified by:
dumpSessions
in interfaceSessionTracker
- Parameters:
pwriter
- the output writer
-
getSessionExpiryMap
public Map<Long,Set<Long>> getSessionExpiryMap()
Returns a mapping from time to session IDs of sessions expiring at that time.- Specified by:
getSessionExpiryMap
in interfaceSessionTracker
-
touchSession
public boolean touchSession(long sessionId, int timeout)
- Specified by:
touchSession
in interfaceSessionTracker
- Returns:
- false if session is no longer active
-
getSessionTimeout
public int getSessionTimeout(long sessionId)
-
setSessionClosing
public void setSessionClosing(long sessionId)
Description copied from interface:SessionTracker
Mark that the session is in the process of closing.- Specified by:
setSessionClosing
in interfaceSessionTracker
-
removeSession
public void removeSession(long sessionId)
- Specified by:
removeSession
in interfaceSessionTracker
-
shutdown
public void shutdown()
- Specified by:
shutdown
in interfaceSessionTracker
-
createSession
public long createSession(int sessionTimeout)
- Specified by:
createSession
in interfaceSessionTracker
-
trackSession
public boolean trackSession(long id, int sessionTimeout)
Description copied from interface:SessionTracker
Track the session expire, not add to ZkDb.- Specified by:
trackSession
in interfaceSessionTracker
- Parameters:
id
- sessionIdsessionTimeout
- sessionTimeout- Returns:
- whether the session was newly tracked (if false, already tracked)
-
commitSession
public boolean commitSession(long id, int sessionTimeout)
Description copied from interface:SessionTracker
Add the session to the local session map or global one in zkDB.- Specified by:
commitSession
in interfaceSessionTracker
- Parameters:
id
- sessionIdsessionTimeout
- sessionTimeout- Returns:
- whether the session was newly added (if false, already existed)
-
isTrackingSession
public boolean isTrackingSession(long sessionId)
- Specified by:
isTrackingSession
in interfaceSessionTracker
- Returns:
- whether or not the SessionTracker is aware of this session
-
checkSession
public void checkSession(long sessionId, Object owner) throws KeeperException.SessionExpiredException, KeeperException.SessionMovedException, KeeperException.UnknownSessionException
Description copied from interface:SessionTracker
Checks whether the SessionTracker is aware of this session, the session is still active, and the owner matches. If the owner wasn't previously set, this sets the owner of the session. UnknownSessionException should never been thrown to the client. It is only used internally to deal with possible local session from other machine- Specified by:
checkSession
in interfaceSessionTracker
- Throws:
KeeperException.SessionExpiredException
KeeperException.SessionMovedException
KeeperException.UnknownSessionException
-
setOwner
public void setOwner(long id, Object owner) throws KeeperException.SessionExpiredException
- Specified by:
setOwner
in interfaceSessionTracker
- Throws:
KeeperException.SessionExpiredException
-
checkGlobalSession
public void checkGlobalSession(long sessionId, Object owner) throws KeeperException.SessionExpiredException, KeeperException.SessionMovedException
Description copied from interface:SessionTracker
Strictly check that a given session is a global session or not- Specified by:
checkGlobalSession
in interfaceSessionTracker
- Throws:
KeeperException.SessionExpiredException
KeeperException.SessionMovedException
-
getLocalSessionCount
public long getLocalSessionCount()
Description copied from interface:SessionTracker
If this session tracker supports local sessions, return how many. otherwise returns 0;- Specified by:
getLocalSessionCount
in interfaceSessionTracker
-
isLocalSessionsEnabled
public boolean isLocalSessionsEnabled()
- Specified by:
isLocalSessionsEnabled
in interfaceSessionTracker
-
globalSessions
public Set<Long> globalSessions()
Description copied from interface:SessionTracker
Get a set of global session IDs- Specified by:
globalSessions
in interfaceSessionTracker
-
localSessions
public Set<Long> localSessions()
Description copied from interface:SessionTracker
Get a set of local session IDs- Specified by:
localSessions
in interfaceSessionTracker
-
-