Uses of Class
org.elasticsearch.snapshots.SnapshotInfo
-
-
Uses of SnapshotInfo in org.elasticsearch.action.admin.cluster.snapshots.create
Methods in org.elasticsearch.action.admin.cluster.snapshots.create that return SnapshotInfo Modifier and Type Method Description SnapshotInfoCreateSnapshotResponse. getSnapshotInfo()Returns snapshot information if snapshot was completed by the time this method returned or null otherwise.Constructors in org.elasticsearch.action.admin.cluster.snapshots.create with parameters of type SnapshotInfo Constructor Description CreateSnapshotResponse(SnapshotInfo snapshotInfo) -
Uses of SnapshotInfo in org.elasticsearch.action.admin.cluster.snapshots.get
Methods in org.elasticsearch.action.admin.cluster.snapshots.get that return types with arguments of type SnapshotInfo Modifier and Type Method Description List<SnapshotInfo>GetSnapshotsResponse. getSnapshots()Returns the list of snapshots -
Uses of SnapshotInfo in org.elasticsearch.repositories
Methods in org.elasticsearch.repositories that return SnapshotInfo Modifier and Type Method Description SnapshotInfoRepository. getSnapshotInfo(SnapshotId snapshotId)Reads snapshot description from repository.Method parameters in org.elasticsearch.repositories with type arguments of type SnapshotInfo Modifier and Type Method Description voidRepository. finalizeSnapshot(SnapshotId snapshotId, List<IndexId> indices, long startTime, String failure, int totalShards, List<SnapshotShardFailure> shardFailures, long repositoryStateId, boolean includeGlobalState, MetaData clusterMetaData, Map<String,Object> userMetadata, ActionListener<SnapshotInfo> listener)Finalizes snapshotting process -
Uses of SnapshotInfo in org.elasticsearch.repositories.blobstore
Fields in org.elasticsearch.repositories.blobstore with type parameters of type SnapshotInfo Modifier and Type Field Description protected ChecksumBlobStoreFormat<SnapshotInfo>BlobStoreRepository. snapshotFormatMethods in org.elasticsearch.repositories.blobstore that return SnapshotInfo Modifier and Type Method Description SnapshotInfoBlobStoreRepository. getSnapshotInfo(SnapshotId snapshotId)Method parameters in org.elasticsearch.repositories.blobstore with type arguments of type SnapshotInfo Modifier and Type Method Description voidBlobStoreRepository. finalizeSnapshot(SnapshotId snapshotId, List<IndexId> indices, long startTime, String failure, int totalShards, List<SnapshotShardFailure> shardFailures, long repositoryStateId, boolean includeGlobalState, MetaData clusterMetaData, Map<String,Object> userMetadata, ActionListener<SnapshotInfo> listener) -
Uses of SnapshotInfo in org.elasticsearch.snapshots
Methods in org.elasticsearch.snapshots that return SnapshotInfo Modifier and Type Method Description SnapshotInfoSnapshotInfo. basic()Gets a newSnapshotInfoinstance from the givenSnapshotInfowith all information stripped out except the snapshot id, state, and indices.SnapshotInfoSnapshotInfo.SnapshotInfoBuilder. build()static SnapshotInfoSnapshotInfo. fromXContentInternal(XContentParser parser)This method creates a SnapshotInfo from internal x-content.SnapshotInfoSnapshotsService. snapshot(String repositoryName, SnapshotId snapshotId)Retrieves snapshot from repositoryMethods in org.elasticsearch.snapshots that return types with arguments of type SnapshotInfo Modifier and Type Method Description List<SnapshotInfo>SnapshotsService. currentSnapshots(String repositoryName)Returns a list of currently running snapshots from repository sorted by snapshot creation dateList<SnapshotInfo>SnapshotsService. snapshots(String repositoryName, List<SnapshotId> snapshotIds, boolean ignoreUnavailable)Returns a list of snapshots from repository sorted by snapshot creation dateMethods in org.elasticsearch.snapshots with parameters of type SnapshotInfo Modifier and Type Method Description intSnapshotInfo. compareTo(SnapshotInfo o)Compares two snapshots by their start time; if the start times are the same, then compares the two snapshots by their snapshot ids.Map<ShardId,IndexShardSnapshotStatus>SnapshotsService. snapshotShards(String repositoryName, RepositoryData repositoryData, SnapshotInfo snapshotInfo)Returns status of shards currently finished snapshotsMethod parameters in org.elasticsearch.snapshots with type arguments of type SnapshotInfo Modifier and Type Method Description voidSnapshotsService. executeSnapshot(CreateSnapshotRequest request, ActionListener<SnapshotInfo> listener)Same asSnapshotsService.createSnapshot(CreateSnapshotRequest, ActionListener)but invokes its callback on completion of the snapshot.
-