Class ClusterNodeInfo
java.lang.Object
org.apache.jackrabbit.oak.plugins.document.ClusterNodeInfo
Information about a cluster node.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enumstatic enum -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe broadcast id.static final StringThe broadcast listener (host:port).static final booleanstatic final intstatic final intOAK-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 intOAK-3398 : default update interval 10secstatic final StringKey for invisible flagstatic final StringThe 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 StringThe end of the lease.static final StringThe time a recovery was done, if the last shutdown required a recover - not set otherwise.static final StringFlag indicating which cluster node is running the recovery.static final StringFlag to indicate whether the _lastRev recovery is in progress.static final StringRuntime UUID (generated unique ID for this instance)static final StringThe start time.static final StringThe state of the cluster.protected static StringThe current working directory. -
Method Summary
Modifier and TypeMethodDescriptionvoiddispose()intgetId()static ClusterNodeInfogetInstance(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 ClusterNodeInfogetInstance(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 ClusterNodeInfogetInstance(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.longlongstatic ClusterNodeInfogetReadOnlyInstance(DocumentStore store) Create a cluster node info instance to be utilized for read only access to underlying store.protected booleanisLeaseExpired(long time) Returnstrueif the lease for this cluster node info should be considered expired given the currenttime.voidChecks if the lease for this cluster node is still valid, otherwise throws aDocumentStoreException.booleanRenew the cluster id lease.voidUpdate the cluster node info.voidsetLeaseFailureHandler(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 theLeaseCheckModethis 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) Returnstrueif the lease for this cluster node info should be considered expired given the currenttime. This method takesleaseFailureMargininto account and will returntrueeven before the passedtimeis beyond theleaseEndTime.- Parameters:
time- the current time to check against the lease end.- Returns:
trueif the lease is considered expired,falseotherwise.
-
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:
trueif the lease was renewed;falseotherwise.- 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
-