Interface ReplicationOperation.Replicas<RequestT extends ReplicationRequest<RequestT>>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void failShardIfNeeded​(ShardRouting replica, java.lang.String message, java.lang.Exception exception, java.lang.Runnable onSuccess, java.util.function.Consumer<java.lang.Exception> onPrimaryDemoted, java.util.function.Consumer<java.lang.Exception> onIgnoredFailure)
      Fail the specified shard if needed, removing it from the current set of active shards.
      void markShardCopyAsStaleIfNeeded​(ShardId shardId, java.lang.String allocationId, java.lang.Runnable onSuccess, java.util.function.Consumer<java.lang.Exception> onPrimaryDemoted, java.util.function.Consumer<java.lang.Exception> onIgnoredFailure)
      Marks shard copy as stale if needed, removing its allocation id from the set of in-sync allocation ids.
      void performOn​(ShardRouting replica, RequestT replicaRequest, long globalCheckpoint, long maxSeqNoOfUpdatesOrDeletes, ActionListener<ReplicationOperation.ReplicaResponse> listener)
      Performs the specified request on the specified replica.
    • Method Detail

      • performOn

        void performOn​(ShardRouting replica,
                       RequestT replicaRequest,
                       long globalCheckpoint,
                       long maxSeqNoOfUpdatesOrDeletes,
                       ActionListener<ReplicationOperation.ReplicaResponse> listener)
        Performs the specified request on the specified replica.
        Parameters:
        replica - the shard this request should be executed on
        replicaRequest - the operation to perform
        globalCheckpoint - the global checkpoint on the primary
        maxSeqNoOfUpdatesOrDeletes - the max seq_no of updates (index operations overwriting Lucene) or deletes on primary after this replication was executed on it.
        listener - callback for handling the response or failure
      • failShardIfNeeded

        void failShardIfNeeded​(ShardRouting replica,
                               java.lang.String message,
                               java.lang.Exception exception,
                               java.lang.Runnable onSuccess,
                               java.util.function.Consumer<java.lang.Exception> onPrimaryDemoted,
                               java.util.function.Consumer<java.lang.Exception> onIgnoredFailure)
        Fail the specified shard if needed, removing it from the current set of active shards. Whether a failure is needed is left up to the implementation.
        Parameters:
        replica - shard to fail
        message - a (short) description of the reason
        exception - the original exception which caused the ReplicationOperation to request the shard to be failed
        onSuccess - a callback to call when the shard has been successfully removed from the active set.
        onPrimaryDemoted - a callback to call when the shard can not be failed because the current primary has been demoted by the master.
        onIgnoredFailure - a callback to call when failing a shard has failed, but it that failure can be safely ignored and the
      • markShardCopyAsStaleIfNeeded

        void markShardCopyAsStaleIfNeeded​(ShardId shardId,
                                          java.lang.String allocationId,
                                          java.lang.Runnable onSuccess,
                                          java.util.function.Consumer<java.lang.Exception> onPrimaryDemoted,
                                          java.util.function.Consumer<java.lang.Exception> onIgnoredFailure)
        Marks shard copy as stale if needed, removing its allocation id from the set of in-sync allocation ids. Whether marking as stale is needed is left up to the implementation.
        Parameters:
        shardId - shard id
        allocationId - allocation id to remove from the set of in-sync allocation ids
        onSuccess - a callback to call when the allocation id has been successfully removed from the in-sync set.
        onPrimaryDemoted - a callback to call when the request failed because the current primary was already demoted by the master.
        onIgnoredFailure - a callback to call when the request failed, but the failure can be safely ignored.