Class GUIDHelper.GUIDResolver

java.lang.Object
com.tangosol.util.Base
com.tangosol.persistence.GUIDHelper.GUIDResolver
Enclosing class:
GUIDHelper

public static class GUIDHelper.GUIDResolver extends Base
Resolver used during a recovery to discover the newest available GUID for a given partition.
  • Field Details

    • f_mapStoreInfo

      protected final Map<Member,com.oracle.coherence.persistence.PersistentStoreInfo[]> f_mapStoreInfo
      The Map of registered PersistentStoreInfos, keyed by member.
    • m_cPartitions

      protected int m_cPartitions
      The partition-count.
    • m_aStoreNewest

      protected com.oracle.coherence.persistence.PersistentStoreInfo[] m_aStoreNewest
      The resolved list of the newest stores, indexed by partition-id.
    • m_mapCleanup

      protected Map<Member,List<String>> m_mapCleanup
      The map of member to a list of GUIDs to be deleted.
    • m_mapResolved

      protected Map<Member,PartitionSet> m_mapResolved
      The resolved map of members to the associated set of partitions.
    • m_partsUnresolved

      protected PartitionSet m_partsUnresolved
      The PartitionSet containing partitions that don't have corresponding GUIDs.
    • m_fSharedStorage

      protected boolean m_fSharedStorage
      Specifies whether or not the storage is shared. If true, every member can see all the newest partition stores.
  • 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 member
      aInfo - the list of PersistentStoreInfo
    • getNewestGUID

      public String getNewestGUID(int nPartition)
      Return the newest GUID for the specified partition.
      Parameters:
      nPartition - the partition to return a GUID for
      Returns:
      the newest GUIDs
    • getNewestGUIDs

      public String[] getNewestGUIDs(PartitionSet parts)
      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

      public PartitionSet getUnresolvedPartitions()
      Retrieve a PartitionSet containing all partitions that don't have any corresponding GUIDs.
      Returns:
      a PartitionSet of all unresolved partitions
    • getInvalidGUIDs

      public Map<Member,List<String>> 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

      public Map<Integer,com.oracle.coherence.persistence.PersistentStoreInfo[]> getMemberStoreInfo()
      Return a Map of member id to an array of PersistentStoreInfo.
      Returns:
      a Map of member id to an array of PersistentStoreInfo
    • isSharedStorage

      public boolean isSharedStorage()
      Check whether ior not all the partition stores visible by every member.
      Returns:
      true iff all the partition stores visible by every member
    • resolve

      public Map<Member,PartitionSet> 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