Package com.tangosol.persistence
Class GUIDHelper.GUIDResolver
java.lang.Object
com.tangosol.util.Base
com.tangosol.persistence.GUIDHelper.GUIDResolver
- Enclosing class:
GUIDHelper
Resolver used during a recovery to discover the newest available GUID
for a given partition.
-
Nested Class Summary
Nested classes/interfaces inherited from class com.tangosol.util.Base
Base.LoggingWriter
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe Map of registered PersistentStoreInfos, keyed by member.protected com.oracle.coherence.persistence.PersistentStoreInfo[]
The resolved list of the newest stores, indexed by partition-id.protected int
The partition-count.protected boolean
Specifies whether or not the storage is shared.The map of member to a list of GUIDs to be deleted.protected Map
<Member, PartitionSet> The resolved map of members to the associated set of partitions.protected PartitionSet
The PartitionSet containing partitions that don't have corresponding GUIDs. -
Constructor Summary
ConstructorsConstructorDescriptionGUIDResolver
(int cPartitions) Construct a GUIDResolver for the specified partition-count. -
Method Summary
Modifier and TypeMethodDescriptionRetrieve a map of member to a list of GUIDs to be deleted.Return a Map of member id to an array of PersistentStoreInfo.getNewestGUID
(int nPartition) Return the newest GUID for the specified partition.String[]
getNewestGUIDs
(PartitionSet parts) Return the list of the newest GUIDs for the specified set of partitions.com.oracle.coherence.persistence.PersistentStoreInfo[]
getNewestStoreInfos
(PartitionSet parts) Return the list of the PersistentStoreInfo with newest GUIDs for the specified set of partitions.Retrieve a PartitionSet containing all partitions that don't have any corresponding GUIDs.boolean
Check whether ior not all the partition stores visible by every member.void
registerStoreInfo
(Member member, com.oracle.coherence.persistence.PersistentStoreInfo[] aInfo) Register the specified list of GUIDs from the specified member.resolve()
Resolve the registered PersistentStoreInfos and return a map associating each member to the set of partitions that it had registered as having the newest GUID for, except when the newest store is empty while the older version is not.Methods inherited from class com.tangosol.util.Base
azzert, azzert, azzert, azzertFailed, breakLines, breakLines, capitalize, checkNotEmpty, checkNotNull, checkRange, computeSafeWaitTime, decimalValue, dup, dup, ensureBigDecimal, ensureClassLoader, ensureRuntimeException, ensureRuntimeException, equals, equalsDeep, err, err, err, err, err, escape, formatDateTime, getCallerStackFrame, getCommonMonitor, getCommonMonitor, getCommonMonitor, getContextClassLoader, getContextClassLoader, getDeepMessage, getErr, getLastSafeTimeMillis, getLog, getMaxDecDigits, getMaxHexDigits, getOriginalException, getOut, getProcessRandom, getRandom, getRandomBinary, getRandomBinary, getRandomString, getSafeTimeMillis, getStackFrame, getStackFrames, getStackTrace, getStackTrace, getStackTrace, getThreadFactory, getTimeZone, getUpTimeMillis, hashCode, hexValue, indentString, indentString, isDecimal, isHex, isLogEcho, isOctal, log, log, log, log, log, makeInteger, makeLong, makeThread, mergeArray, mergeBooleanArray, mergeByteArray, mergeCharArray, mergeDoubleArray, mergeFloatArray, mergeIntArray, mergeLongArray, mod, mod, newHashMap, newHashMap, newHashSet, newHashSet, octalValue, out, out, out, out, out, pad, parseBandwidth, parseBandwidth, parseDelimitedString, parseHex, parseHex, parseMemorySize, parseMemorySize, parsePercentage, parseTime, parseTime, parseTimeNanos, parseTimeNanos, printStackTrace, randomize, randomize, randomize, randomize, read, read, read, read, read, read, read, replace, setErr, setLog, setLogEcho, setOut, sleep, toBandwidthString, toBandwidthString, toCharEscape, toCrc, toCrc, toCrc, toCrc, toCrc, toDecString, toDelimitedString, toDelimitedString, toDelimitedString, toDelimitedString, toHex, toHex, toHexDump, toHexEscape, toHexEscape, toHexEscape, toHexEscape, toHexString, toMemorySizeString, toMemorySizeString, toQuotedCharEscape, toQuotedStringEscape, toSqlString, toString, toString, toStringEscape, toUnicodeEscape, trace, trace, trace, trace, trace, trace, trace, trace, trace, truncateString, truncateString, wait
-
Field Details
-
f_mapStoreInfo
The Map of registered PersistentStoreInfos, keyed by member. -
m_cPartitions
protected int m_cPartitionsThe partition-count. -
m_aStoreNewest
protected com.oracle.coherence.persistence.PersistentStoreInfo[] m_aStoreNewestThe resolved list of the newest stores, indexed by partition-id. -
m_mapCleanup
The map of member to a list of GUIDs to be deleted. -
m_mapResolved
The resolved map of members to the associated set of partitions. -
m_partsUnresolved
The PartitionSet containing partitions that don't have corresponding GUIDs.
-
-
Constructor Details
-
GUIDResolver
public GUIDResolver(int cPartitions) Construct a GUIDResolver for the specified partition-count.- Parameters:
cPartitions
- the partition-count
-
-
Method Details
-
registerStoreInfo
public void registerStoreInfo(Member member, com.oracle.coherence.persistence.PersistentStoreInfo[] aInfo) Register the specified list of GUIDs from the specified member.- Parameters:
member
- the memberaInfo
- the list of PersistentStoreInfo
-
getNewestGUID
Return the newest GUID for the specified partition.- Parameters:
nPartition
- the partition to return a GUID for- Returns:
- the newest GUIDs
-
getNewestGUIDs
Return the list of the newest GUIDs for the specified set of partitions.- Parameters:
parts
- the set of partitions to return GUIDs for- Returns:
- the list of newest GUIDs
-
getNewestStoreInfos
public com.oracle.coherence.persistence.PersistentStoreInfo[] getNewestStoreInfos(PartitionSet parts) Return the list of the PersistentStoreInfo with newest GUIDs for the specified set of partitions.- Parameters:
parts
- the set of partitions to return PersistentStoreInfo for- Returns:
- the list of the PersistentStoreInfo with newest GUIDs
- Since:
- 24.09
-
getUnresolvedPartitions
Retrieve a PartitionSet containing all partitions that don't have any corresponding GUIDs.- Returns:
- a PartitionSet of all unresolved partitions
-
getInvalidGUIDs
Retrieve a map of member to a list of GUIDs to be deleted.- Returns:
- a map of member to a list of GUIDs to be deleted
-
getMemberStoreInfo
Return a Map of member id to an array of PersistentStoreInfo.- Returns:
- a Map of member id to an array of PersistentStoreInfo
-
resolve
Resolve the registered PersistentStoreInfos and return a map associating each member to the set of partitions that it had registered as having the newest GUID for, except when the newest store is empty while the older version is not.- Returns:
- a map associating each member to the set of partitions it has the latest GUID for
-