Interface IndicesClusterStateService.AllocatedIndices<T extends IndicesClusterStateService.Shard,​U extends IndicesClusterStateService.AllocatedIndex<T>>

All Superinterfaces:
java.lang.Iterable<U>
All Known Implementing Classes:
IndicesService
Enclosing class:
IndicesClusterStateService

public static interface IndicesClusterStateService.AllocatedIndices<T extends IndicesClusterStateService.Shard,​U extends IndicesClusterStateService.AllocatedIndex<T>>
extends java.lang.Iterable<U>
  • Method Details

    • createIndex

      U createIndex​(IndexMetadata indexMetadata, java.util.List<IndexEventListener> builtInIndexListener, boolean writeDanglingIndices) throws java.io.IOException
      Creates a new IndexService for the given metadata.
      Parameters:
      indexMetadata - the index metadata to create the index for
      builtInIndexListener - a list of built-in lifecycle IndexEventListener that should should be used along side with the per-index listeners
      writeDanglingIndices - whether dangling indices information should be written
      Throws:
      ResourceAlreadyExistsException - if the index already exists.
      java.io.IOException
    • verifyIndexIsDeleted

      IndexMetadata verifyIndexIsDeleted​(Index index, ClusterState clusterState)
      Verify that the contents on disk for the given index is deleted; if not, delete the contents. This method assumes that an index is already deleted in the cluster state and/or explicitly through index tombstones.
      Parameters:
      index - Index to make sure its deleted from disk
      clusterState - ClusterState to ensure the index is not part of it
      Returns:
      IndexMetadata for the index loaded from disk
    • deleteUnassignedIndex

      void deleteUnassignedIndex​(java.lang.String reason, IndexMetadata metadata, ClusterState clusterState)
      Deletes an index that is not assigned to this node. This method cleans up all disk folders relating to the index but does not deal with in-memory structures. For those call removeIndex(Index, IndexRemovalReason, String)
    • removeIndex

      void removeIndex​(Index index, IndicesClusterStateService.AllocatedIndices.IndexRemovalReason reason, java.lang.String extraInfo)
      Removes the given index from this service and releases all associated resources. Persistent parts of the index like the shards files, state and transaction logs are kept around in the case of a disaster recovery.
      Parameters:
      index - the index to remove
      reason - the reason to remove the index
      extraInfo - extra information that will be used for logging and reporting
    • indexService

      @Nullable U indexService​(Index index)
      Returns an IndexService for the specified index if exists otherwise returns null.
    • createShard

      T createShard​(ShardRouting shardRouting, PeerRecoveryTargetService recoveryTargetService, PeerRecoveryTargetService.RecoveryListener recoveryListener, RepositoriesService repositoriesService, java.util.function.Consumer<IndexShard.ShardFailure> onShardFailure, java.util.function.Consumer<ShardId> globalCheckpointSyncer, RetentionLeaseSyncer retentionLeaseSyncer, DiscoveryNode targetNode, @Nullable DiscoveryNode sourceNode) throws java.io.IOException
      Creates a shard for the specified shard routing and starts recovery.
      Parameters:
      shardRouting - the shard routing
      recoveryTargetService - recovery service for the target
      recoveryListener - a callback when recovery changes state (finishes or fails)
      repositoriesService - service responsible for snapshot/restore
      onShardFailure - a callback when this shard fails
      globalCheckpointSyncer - a callback when this shard syncs the global checkpoint
      retentionLeaseSyncer - a callback when this shard syncs retention leases
      targetNode - the node where this shard will be recovered
      sourceNode - the source node to recover this shard from (it might be null)
      Returns:
      a new shard
      Throws:
      java.io.IOException - if an I/O exception occurs when creating the shard
    • getShardOrNull

      default T getShardOrNull​(ShardId shardId)
      Returns shard for the specified id if it exists otherwise returns null.
    • processPendingDeletes

      void processPendingDeletes​(Index index, IndexSettings indexSettings, org.elasticsearch.common.unit.TimeValue timeValue) throws java.io.IOException, java.lang.InterruptedException, ShardLockObtainFailedException
      Throws:
      java.io.IOException
      java.lang.InterruptedException
      ShardLockObtainFailedException