Uses of Class
org.elasticsearch.repositories.RepositoryData
-
Packages that use RepositoryData Package Description org.elasticsearch.repositories org.elasticsearch.repositories.blobstore org.elasticsearch.snapshots -
-
Uses of RepositoryData in org.elasticsearch.repositories
Fields in org.elasticsearch.repositories declared as RepositoryData Modifier and Type Field Description static RepositoryDataRepositoryData. EMPTYAn instance initialized for an empty repository.Methods in org.elasticsearch.repositories that return RepositoryData Modifier and Type Method Description RepositoryDataRepositoryData. addSnapshot(SnapshotId snapshotId, SnapshotState snapshotState, List<IndexId> snapshottedIndices)Add a snapshot and its indices to the repository; returns a new instance.protected RepositoryDataRepositoryData. copy()RepositoryDataRepository. getRepositoryData()Returns aRepositoryDatato describe the data in the repository, including the snapshots and the indices across all snapshots found in the repository.RepositoryDataRepositoryData. removeSnapshot(SnapshotId snapshotId)Remove a snapshot and remove any indices that no longer exist in the repository due to the deletion of the snapshot.static RepositoryDataRepositoryData. snapshotsFromXContent(XContentParser parser, long genId)Reads an instance ofRepositoryDatafrom x-content, loading the snapshots and indices metadata.RepositoryDataRepositoryData. withGenId(long newGeneration)Create a new instance with the given generation and all other fields equal to this instance. -
Uses of RepositoryData in org.elasticsearch.repositories.blobstore
Methods in org.elasticsearch.repositories.blobstore that return RepositoryData Modifier and Type Method Description RepositoryDataBlobStoreRepository. getRepositoryData()Methods in org.elasticsearch.repositories.blobstore with parameters of type RepositoryData Modifier and Type Method Description protected voidBlobStoreRepository. writeIndexGen(RepositoryData repositoryData, long expectedGen) -
Uses of RepositoryData in org.elasticsearch.snapshots
Methods in org.elasticsearch.snapshots that return RepositoryData Modifier and Type Method Description RepositoryDataSnapshotsService. getRepositoryData(String repositoryName)Gets theRepositoryDatafor the given repository.Methods in org.elasticsearch.snapshots with parameters of type RepositoryData Modifier and Type Method Description Map<ShardId,IndexShardSnapshotStatus>SnapshotsService. snapshotShards(String repositoryName, RepositoryData repositoryData, SnapshotInfo snapshotInfo)Returns status of shards currently finished snapshots
-