Interface IracManager

All Known Implementing Classes:
DefaultIracManager, NoOpIracManager

public interface IracManager
It manages the keys changed in the local cluster and sends to all asynchronous backup configured.

The lockOwner is the last command (or transaction) who updated the key. It is used to detect conflicting local updates while sending to the remote backups (sites).

Since:
11.0
Author:
Pedro Ruivo
  • Method Details Link icon

    • trackUpdatedKey Link icon

      void trackUpdatedKey(int segment, Object key, Object lockOwner)
      Sets the key as changed by the lockOwner.
      Parameters:
      segment - The key's segment.
      key - The key changed.
      lockOwner - The lock owner who updated the key.
    • trackExpiredKey Link icon

      void trackExpiredKey(int segment, Object key, Object lockOwner)
      Similar to trackUpdatedKey(int, Object, Object) but it tracks expired keys instead.

      Expired key need a different conflict resolution algorithm since remove expired should never win any conflict.

      Parameters:
      segment - The key's segment.
      key - The key expired.
      lockOwner - The lock owner who updated the key.
    • trackForStateTransfer Link icon

      CompletionStage<Void> trackForStateTransfer(Collection<XSiteState> stateList)
      Tracks a set of keys to be sent to the remote site.

      There is no much difference between this method and trackUpdatedKey(int, Object, Object). It just returns a CompletionStage to notify when the keys were sent. It is required by the cross-site state transfer protocol to know when it has finish.

      Parameters:
      stateList - The list of XSiteState.
      Returns:
      A CompletionStage which is completed when all the keys in stateList have been sent to the remote site.
    • trackClear Link icon

      void trackClear(boolean sendClear)
      Sets all keys as removed.
      Parameters:
      sendClear - if true, an IracClearKeysRequest is sent to the backup sites.
    • removeState Link icon

      void removeState(IracManagerKeyInfo state)
      Removes the state associated to a single key.
      Parameters:
      state - The state to remove.
    • onTopologyUpdate Link icon

      void onTopologyUpdate(CacheTopology oldCacheTopology, CacheTopology newCacheTopology)
      Notifies a topology changed.
      Parameters:
      oldCacheTopology - The old CacheTopology.
      newCacheTopology - The new CacheTopology.
    • requestState Link icon

      void requestState(Address requestor, IntSet segments)
      Requests the state stored in this instance for the given segments.
      Parameters:
      requestor - The requestor.
      segments - The segments requested.
    • receiveState Link icon

      void receiveState(int segment, Object key, Object lockOwner, IracMetadata tombstone)
      Receives the state related to the key.
      Parameters:
      segment - The key's segment.
      key - The key modified.
      lockOwner - The last lockOwner.
      tombstone - The tombstone (can be null)
    • checkAndTrackExpiration Link icon

      CompletionStage<Boolean> checkAndTrackExpiration(Object key)
      Checks if the given key is expired on all other sites. If the key is expired on all other sites this will return true
      Parameters:
      key - The key to check if it is expired or not
      Returns:
      Whether this key is expired on all other sites
    • incrementNumberOfDiscards Link icon

      void incrementNumberOfDiscards()
      Increase the count of discards.
    • incrementNumberOfConflictLocalWins Link icon

      void incrementNumberOfConflictLocalWins()
      Increase the count of conflicts if merge policy discard update (local value wins)
    • incrementNumberOfConflictRemoteWins Link icon

      void incrementNumberOfConflictRemoteWins()
      Increase the count of conflicts if merge policy applies update (remote value wins)
    • incrementNumberOfConflictMerged Link icon

      void incrementNumberOfConflictMerged()
      Increase the count of conflicts if merge policy created a new value (merge remote value with local value)
    • containsKey Link icon

      boolean containsKey(Object key)
      Checks if the key is present.

      A key is present as long as its latest update was not confirmed by all remote sites.

      Parameters:
      key - The key to check.
      Returns:
      true if the key is present.
    • pendingKeys Link icon

      Stream<IracManagerKeyInfo> pendingKeys()
      Returns a Stream containing all keys that have not been acknowledged by other sites.

      This stream represents keys for which a corresponding acknowledgment has not been received from all participating sites. This can be used to identify pending operations or potential data inconsistencies.

      Returns:
      A Stream of unacknowledged keys.
    • checkStaleKeys Link icon

      void checkStaleKeys(Address origin, Collection<IracManagerKeyInfo> keys)
      Checks a remote node's list of IracManagerKeyInfo for stale or outdated entries.

      This method iterates through the provided list of key information and identifies entries that are considered stale. For each stale entry found, a cleanup command is invoked to remove the corresponding key on the remote node.

      Parameters:
      origin - The node that initiated the check.
      keys - The list of key information to be inspected for stale entries.