Package org.elasticsearch.repositories
Class FilterRepository
java.lang.Object
org.elasticsearch.repositories.FilterRepository
- All Implemented Interfaces:
Closeable
,AutoCloseable
,LifecycleComponent
,org.elasticsearch.core.Releasable
,Repository
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.elasticsearch.repositories.Repository
Repository.Factory
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addLifecycleListener(LifecycleListener listener)
boolean
canUpdateInPlace(Settings updatedSettings, Set<String> ignoredSettings)
Check if this instancesSettings
can be changed to the provided updated settings without recreating the repository.void
cloneShardSnapshot(SnapshotId source, SnapshotId target, RepositoryShardId shardId, String shardGeneration, ActionListener<ShardSnapshotResult> listener)
Clones a shard snapshot.void
close()
void
deleteSnapshots(Collection<SnapshotId> snapshotIds, long repositoryStateId, Version repositoryMetaVersion, ActionListener<RepositoryData> listener)
Deletes snapshotsvoid
endVerification(String verificationToken)
Called at the end of repository verification process.void
executeConsistentStateUpdate(Function<RepositoryData,ClusterStateUpdateTask> createUpdateTask, String source, Consumer<Exception> onFailure)
Execute a cluster state update with a consistent view of the currentRepositoryData
.void
finalizeSnapshot(ShardGenerations shardGenerations, long repositoryStateId, Metadata clusterMetadata, SnapshotInfo snapshotInfo, Version repositoryMetaVersion, Function<ClusterState,ClusterState> stateTransformer, ActionListener<RepositoryData> listener)
Finalizes snapshotting processReturns metadata about this repository.void
getRepositoryData(ActionListener<RepositoryData> listener)
Returns aRepositoryData
to describe the data in the repository, including the snapshots and the indices across all snapshots found in the repository.long
Returns restore throttle time in nanosecondsgetShardSnapshotStatus(SnapshotId snapshotId, IndexId indexId, ShardId shardId)
Retrieve shard snapshot status for the stored snapshotgetSnapshotGlobalMetadata(SnapshotId snapshotId)
Returns global metadata associated with the snapshot.getSnapshotIndexMetaData(RepositoryData repositoryData, SnapshotId snapshotId, IndexId index)
Returns the index metadata associated with the snapshot.void
getSnapshotInfo(GetSnapshotInfoContext context)
Reads snapshot descriptions from the repository.long
Returns snapshot throttle time in nanosecondsvoid
initializeSnapshot(SnapshotId snapshotId, List<IndexId> indices, Metadata metadata)
Starts snapshotting processboolean
Returns true if the repository supports only read operationsvoid
removeLifecycleListener(LifecycleListener listener)
void
restoreShard(Store store, SnapshotId snapshotId, IndexId indexId, ShardId snapshotShardId, RecoveryState recoveryState, ActionListener<Void> listener)
Restores snapshot of the shard.void
snapshotShard(SnapshotShardContext context)
Creates a snapshot of the shard referenced by the givenSnapshotShardContext
.void
start()
Verifies repository on the master node and returns the verification token.void
stop()
void
updateState(ClusterState state)
Update the repository with the incoming cluster state.void
verify(String verificationToken, DiscoveryNode localNode)
Verifies repository settings on data node.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.elasticsearch.repositories.Repository
adaptUserMetadata, getSnapshotInfo, stats
-
Constructor Details
-
FilterRepository
-
-
Method Details
-
getDelegate
-
getMetadata
Description copied from interface:Repository
Returns metadata about this repository.- Specified by:
getMetadata
in interfaceRepository
-
getSnapshotInfo
Description copied from interface:Repository
Reads snapshot descriptions from the repository.- Specified by:
getSnapshotInfo
in interfaceRepository
- Parameters:
context
- get-snapshot-info-context
-
getSnapshotGlobalMetadata
Description copied from interface:Repository
Returns global metadata associated with the snapshot.- Specified by:
getSnapshotGlobalMetadata
in interfaceRepository
- Parameters:
snapshotId
- the snapshot id to load the global metadata from- Returns:
- the global metadata about the snapshot
-
getSnapshotIndexMetaData
public IndexMetadata getSnapshotIndexMetaData(RepositoryData repositoryData, SnapshotId snapshotId, IndexId index) throws IOExceptionDescription copied from interface:Repository
Returns the index metadata associated with the snapshot.- Specified by:
getSnapshotIndexMetaData
in interfaceRepository
- Parameters:
repositoryData
- currentRepositoryData
snapshotId
- the snapshot id to load the index metadata fromindex
- theIndexId
to load the metadata from- Returns:
- the index metadata about the given index for the given snapshot
- Throws:
IOException
-
getRepositoryData
Description copied from interface:Repository
Returns aRepositoryData
to describe the data in the repository, including the snapshots and the indices across all snapshots found in the repository. Throws aRepositoryException
if there was an error in reading the data.- Specified by:
getRepositoryData
in interfaceRepository
- Parameters:
listener
- listener that may be resolved on different kinds of threads including transport and cluster state applier threads and therefore must fork to a new thread for executing any long running actions
-
initializeSnapshot
Description copied from interface:Repository
Starts snapshotting process- Specified by:
initializeSnapshot
in interfaceRepository
- Parameters:
snapshotId
- snapshot idindices
- list of indices to be snapshottedmetadata
- cluster metadata
-
finalizeSnapshot
public void finalizeSnapshot(ShardGenerations shardGenerations, long repositoryStateId, Metadata clusterMetadata, SnapshotInfo snapshotInfo, Version repositoryMetaVersion, Function<ClusterState,ClusterState> stateTransformer, ActionListener<RepositoryData> listener)Description copied from interface:Repository
Finalizes snapshotting processThis method is called on master after all shards are snapshotted.
- Specified by:
finalizeSnapshot
in interfaceRepository
- Parameters:
shardGenerations
- updated shard generationsrepositoryStateId
- the unique id identifying the state of the repository when the snapshot beganclusterMetadata
- cluster metadatasnapshotInfo
- SnapshotInfo instance to write for this snapshotrepositoryMetaVersion
- version of the updated repository metadata to writestateTransformer
- a function that filters the last cluster state update that the snapshot finalization will execute and is used to remove any state tracked for the in-progress snapshot from the cluster statelistener
- listener to be invoked with the newRepositoryData
after completing the snapshot
-
deleteSnapshots
public void deleteSnapshots(Collection<SnapshotId> snapshotIds, long repositoryStateId, Version repositoryMetaVersion, ActionListener<RepositoryData> listener)Description copied from interface:Repository
Deletes snapshots- Specified by:
deleteSnapshots
in interfaceRepository
- Parameters:
snapshotIds
- snapshot idsrepositoryStateId
- the unique id identifying the state of the repository when the snapshot deletion beganrepositoryMetaVersion
- version of the updated repository metadata to writelistener
- completion listener
-
getSnapshotThrottleTimeInNanos
public long getSnapshotThrottleTimeInNanos()Description copied from interface:Repository
Returns snapshot throttle time in nanoseconds- Specified by:
getSnapshotThrottleTimeInNanos
in interfaceRepository
-
getRestoreThrottleTimeInNanos
public long getRestoreThrottleTimeInNanos()Description copied from interface:Repository
Returns restore throttle time in nanoseconds- Specified by:
getRestoreThrottleTimeInNanos
in interfaceRepository
-
startVerification
Description copied from interface:Repository
Verifies repository on the master node and returns the verification token.If the verification token is not null, it's passed to all data nodes for verification. If it's null - no additional verification is required
- Specified by:
startVerification
in interfaceRepository
- Returns:
- verification token that should be passed to all Index Shard Repositories for additional verification or null
-
endVerification
Description copied from interface:Repository
Called at the end of repository verification process.This method should perform all necessary cleanup of the temporary files created in the repository
- Specified by:
endVerification
in interfaceRepository
- Parameters:
verificationToken
- verification request generated byRepository.startVerification()
command
-
verify
Description copied from interface:Repository
Verifies repository settings on data node.- Specified by:
verify
in interfaceRepository
- Parameters:
verificationToken
- value returned byRepository.startVerification()
localNode
- the local node information, for inclusion in verification errors
-
isReadOnly
public boolean isReadOnly()Description copied from interface:Repository
Returns true if the repository supports only read operations- Specified by:
isReadOnly
in interfaceRepository
- Returns:
- true if the repository is read/only
-
snapshotShard
Description copied from interface:Repository
Creates a snapshot of the shard referenced by the givenSnapshotShardContext
.As snapshot process progresses, implementation of this method should update
IndexShardSnapshotStatus
object returned bySnapshotShardContext.status()
and check itsIndexShardSnapshotStatus.isAborted()
to see if the snapshot process should be aborted.- Specified by:
snapshotShard
in interfaceRepository
- Parameters:
context
- snapshot shard context that must be completed viaSnapshotShardContext.onResponse(org.elasticsearch.repositories.ShardSnapshotResult)
orActionListener.Delegating.onFailure(java.lang.Exception)
-
restoreShard
public void restoreShard(Store store, SnapshotId snapshotId, IndexId indexId, ShardId snapshotShardId, RecoveryState recoveryState, ActionListener<Void> listener)Description copied from interface:Repository
Restores snapshot of the shard.The index can be renamed on restore, hence different
shardId
andsnapshotShardId
are supplied.- Specified by:
restoreShard
in interfaceRepository
- Parameters:
store
- the store to restore the index intosnapshotId
- snapshot idindexId
- id of the index in the repository from which the restore is occurringsnapshotShardId
- shard id (in the snapshot)recoveryState
- recovery statelistener
- listener to invoke once done
-
getShardSnapshotStatus
public IndexShardSnapshotStatus getShardSnapshotStatus(SnapshotId snapshotId, IndexId indexId, ShardId shardId)Description copied from interface:Repository
Retrieve shard snapshot status for the stored snapshot- Specified by:
getShardSnapshotStatus
in interfaceRepository
- Parameters:
snapshotId
- snapshot idindexId
- the snapshotted index id for the shard to get status forshardId
- shard id- Returns:
- snapshot status
-
canUpdateInPlace
Description copied from interface:Repository
Check if this instancesSettings
can be changed to the provided updated settings without recreating the repository.- Specified by:
canUpdateInPlace
in interfaceRepository
- Parameters:
updatedSettings
- new repository settingsignoredSettings
- setting names to ignore even if changed- Returns:
- true if the repository can be updated in place
-
updateState
Description copied from interface:Repository
Update the repository with the incoming cluster state. This method is invoked fromRepositoriesService.applyClusterState(org.elasticsearch.cluster.ClusterChangedEvent)
and thus the same semantics as withClusterStateApplier.applyClusterState(org.elasticsearch.cluster.ClusterChangedEvent)
apply for theClusterState
that is passed here.- Specified by:
updateState
in interfaceRepository
- Parameters:
state
- new cluster state
-
executeConsistentStateUpdate
public void executeConsistentStateUpdate(Function<RepositoryData,ClusterStateUpdateTask> createUpdateTask, String source, Consumer<Exception> onFailure)Description copied from interface:Repository
Execute a cluster state update with a consistent view of the currentRepositoryData
. TheClusterState
passed to the task generated throughcreateUpdateTask
is guaranteed to point at the same state for this repository as the did the state at the time theRepositoryData
was loaded. This allows for operations on the repository that need a consistent view of both the cluster state and the repository contents at one point in time like for example, checking if a snapshot is in the repository before adding the delete operation for it to the cluster state.- Specified by:
executeConsistentStateUpdate
in interfaceRepository
- Parameters:
createUpdateTask
- function to supply cluster state update tasksource
- the source of the cluster state update taskonFailure
- error handler invoked on failure to get a consistent view of the currentRepositoryData
-
cloneShardSnapshot
public void cloneShardSnapshot(SnapshotId source, SnapshotId target, RepositoryShardId shardId, String shardGeneration, ActionListener<ShardSnapshotResult> listener)Description copied from interface:Repository
Clones a shard snapshot.- Specified by:
cloneShardSnapshot
in interfaceRepository
- Parameters:
source
- source snapshottarget
- target snapshotshardId
- shard idshardGeneration
- shard generation in repolistener
- listener to complete with new shard generation once clone has completed
-
lifecycleState
- Specified by:
lifecycleState
in interfaceLifecycleComponent
-
addLifecycleListener
- Specified by:
addLifecycleListener
in interfaceLifecycleComponent
-
removeLifecycleListener
- Specified by:
removeLifecycleListener
in interfaceLifecycleComponent
-
start
public void start()- Specified by:
start
in interfaceLifecycleComponent
-
stop
public void stop()- Specified by:
stop
in interfaceLifecycleComponent
-
close
public void close()- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Specified by:
close
in interfaceorg.elasticsearch.core.Releasable
-