Class ClusterNodeInfo
java.lang.Object
org.apache.jackrabbit.oak.plugins.document.ClusterNodeInfo
Information about a cluster node.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enum
static enum
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
The broadcast id.static final String
The broadcast listener (host:port).static final boolean
static final int
static final int
OAK-3398 : default failure margin 20sec before actual lease timeout (note that OAK-3399 / MAX_RETRY_SLEEPS_BEFORE_LEASE_FAILURE eats off another few seconds from this margin, by default 5sec, so the actual default failure-margin is down to 15sec - and that is high-noon!)static final int
OAK-3398 : default update interval 10secstatic final String
Key for invisible flagstatic final String
The key for the root-revision of the last background write (of unsaved modifications) - that is: the last root-revision written by the instance in case of a clear shutdown or via recovery of another instance in case of a crashstatic final String
The end of the lease.static final String
The time a recovery was done, if the last shutdown required a recover - not set otherwise.static final String
Flag indicating which cluster node is running the recovery.static final String
Flag to indicate whether the _lastRev recovery is in progress.static final String
Runtime UUID (generated unique ID for this instance)static final String
The start time.static final String
The state of the cluster.protected static String
The current working directory. -
Method Summary
Modifier and TypeMethodDescriptionvoid
dispose()
int
getId()
static ClusterNodeInfo
getInstance
(DocumentStore store, org.apache.jackrabbit.oak.plugins.document.RecoveryHandler recoveryHandler, String machineId, String instanceId, int configuredClusterId) Get or create a cluster node info instance for the store.static ClusterNodeInfo
getInstance
(DocumentStore store, org.apache.jackrabbit.oak.plugins.document.RecoveryHandler recoveryHandler, String machineId, String instanceId, int configuredClusterId, boolean invisible) Get or create a cluster node info instance for the store.static ClusterNodeInfo
getInstance
(DocumentStore store, org.apache.jackrabbit.oak.plugins.document.RecoveryHandler recoveryHandler, String machineId, String instanceId, int configuredClusterId, boolean invisible, long reuseAfterRecoveryMillis) Get or create a cluster node info instance for the store.long
long
static ClusterNodeInfo
getReadOnlyInstance
(DocumentStore store) Create a cluster node info instance to be utilized for read only access to underlying store.protected boolean
isLeaseExpired
(long time) Returnstrue
if the lease for this cluster node info should be considered expired given the currenttime
.void
Checks if the lease for this cluster node is still valid, otherwise throws aDocumentStoreException
.boolean
Renew the cluster id lease.void
Update the cluster node info.void
setLeaseFailureHandler
(LeaseFailureHandler leaseFailureHandler) toString()
-
Field Details
-
LEASE_END_KEY
The end of the lease.- See Also:
-
RECOVERY_TIME_KEY
The time a recovery was done, if the last shutdown required a recover - not set otherwise.- See Also:
-
START_TIME_KEY
The start time.- See Also:
-
LAST_WRITTEN_ROOT_REV_KEY
The key for the root-revision of the last background write (of unsaved modifications) - that is: the last root-revision written by the instance in case of a clear shutdown or via recovery of another instance in case of a crash- See Also:
-
STATE
The state of the cluster. On proper shutdown the state should be cleared. -
BROADCAST_ID
The broadcast id. If the broadcasting cache is used, a new id is set after startup.- See Also:
-
BROADCAST_LISTENER
The broadcast listener (host:port). If the broadcasting cache is used, this is set after startup.- See Also:
-
REV_RECOVERY_LOCK
Flag to indicate whether the _lastRev recovery is in progress. -
REV_RECOVERY_BY
Flag indicating which cluster node is running the recovery.- See Also:
-
INVISIBLE
Key for invisible flag- See Also:
-
RUNTIME_ID_KEY
Runtime UUID (generated unique ID for this instance)- See Also:
-
WORKING_DIR
The current working directory. Note: marked protected non-final for testing purpose only. -
DEFAULT_LEASE_DURATION_MILLIS
public static final int DEFAULT_LEASE_DURATION_MILLIS -
DEFAULT_LEASE_UPDATE_INTERVAL_MILLIS
public static final int DEFAULT_LEASE_UPDATE_INTERVAL_MILLISOAK-3398 : default update interval 10sec- See Also:
-
DEFAULT_LEASE_FAILURE_MARGIN_MILLIS
public static final int DEFAULT_LEASE_FAILURE_MARGIN_MILLISOAK-3398 : default failure margin 20sec before actual lease timeout (note that OAK-3399 / MAX_RETRY_SLEEPS_BEFORE_LEASE_FAILURE eats off another few seconds from this margin, by default 5sec, so the actual default failure-margin is down to 15sec - and that is high-noon!)- See Also:
-
DEFAULT_LEASE_CHECK_DISABLED
public static final boolean DEFAULT_LEASE_CHECK_DISABLED
-
-
Method Details
-
getId
public int getId() -
getReadOnlyInstance
Create a cluster node info instance to be utilized for read only access to underlying store.- Parameters:
store
- the document store.- Returns:
- the cluster node info
-
getInstance
public static ClusterNodeInfo getInstance(DocumentStore store, org.apache.jackrabbit.oak.plugins.document.RecoveryHandler recoveryHandler, String machineId, String instanceId, int configuredClusterId) Get or create a cluster node info instance for the store.- Parameters:
store
- the document store (for the lease)recoveryHandler
- the recovery handler to call for a clusterId with an expired lease.machineId
- the machine id (null for MAC address)instanceId
- the instance id (null for current working directory)configuredClusterId
- the configured cluster id (or 0 for dynamic assignment)- Returns:
- the cluster node info
-
getInstance
public static ClusterNodeInfo getInstance(DocumentStore store, org.apache.jackrabbit.oak.plugins.document.RecoveryHandler recoveryHandler, String machineId, String instanceId, int configuredClusterId, boolean invisible) Get or create a cluster node info instance for the store.- Parameters:
store
- the document store (for the lease)recoveryHandler
- the recovery handler to call for a clusterId with an expired lease.machineId
- the machine id (null for MAC address)instanceId
- the instance id (null for current working directory)configuredClusterId
- the configured cluster id (or 0 for dynamic assignment)- Returns:
- the cluster node info
-
getInstance
public static ClusterNodeInfo getInstance(DocumentStore store, org.apache.jackrabbit.oak.plugins.document.RecoveryHandler recoveryHandler, String machineId, String instanceId, int configuredClusterId, boolean invisible, long reuseAfterRecoveryMillis) Get or create a cluster node info instance for the store.- Parameters:
store
- the document store (for the lease)recoveryHandler
- the recovery handler to call for a clusterId with an expired lease.machineId
- the machine id (null for MAC address)instanceId
- the instance id (null for current working directory)configuredClusterId
- the configured cluster id (or 0 for dynamic assignment)- Returns:
- the cluster node info
-
performLeaseCheck
Checks if the lease for this cluster node is still valid, otherwise throws aDocumentStoreException
. Depending on theLeaseCheckMode
this method will not throw the exception immediately when the lease expires. If the mode is set toLeaseCheckMode.LENIENT
, then this method will give the lease update thread a last chance of 5 seconds to renew it. This allows the DocumentNodeStore to recover from an expired lease caused by a system put to sleep or a JVM in debug mode.- Throws:
DocumentStoreException
- if the lease expired.
-
isLeaseExpired
protected boolean isLeaseExpired(long time) Returnstrue
if the lease for this cluster node info should be considered expired given the currenttime
. This method takesleaseFailureMargin
into account and will returntrue
even before the passedtime
is beyond theleaseEndTime
.- Parameters:
time
- the current time to check against the lease end.- Returns:
true
if the lease is considered expired,false
otherwise.
-
renewLease
Renew the cluster id lease. This method needs to be called once in a while, to ensure the same cluster id is not re-used by a different instance. The lease is only renewed after 'leaseUpdateInterval' millis since last lease update - default being every 10 sec (this used to be 30sec).This method will not fail immediately with a DocumentStoreException if the lease expired. It will still try to renew the lease and only fail if
performLeaseCheck()
decided the lease expired or another cluster node initiated recover for this node.- Returns:
true
if the lease was renewed;false
otherwise.- Throws:
DocumentStoreException
- if the operation failed or the lease expired.
-
setInfo
Update the cluster node info.- Parameters:
info
- the map of changes
-
getLeaseTime
public long getLeaseTime() -
getLeaseEndTime
public long getLeaseEndTime() -
setLeaseFailureHandler
-
dispose
public void dispose() -
toString
-