class
Qdrant::Api::Collections::Snapshots
- Qdrant::Api::Collections::Snapshots
- Reference
- Object
Defined in:
qdrant-api/api/collections/snapshots.crConstructors
Instance Method Summary
-
#create(collection_name : String, *, wait : Bool | Nil = nil) : Response(Qdrant::Api::CreateSnapshot200Response)
Create collection snapshot Create new snapshot for a collection
-
#delete(collection_name : String, snapshot_name : String, *, wait : Bool | Nil = nil) : Response(Qdrant::Api::RecoverFromUploadedSnapshot200Response)
Delete collection snapshot Delete snapshot for a collection
-
#get(collection_name : String, snapshot_name : String) : Response(File)
Download collection snapshot Download specified snapshot from a collection as a file
-
#list(collection_name : String) : Response(Qdrant::Api::ListSnapshots200Response)
List collection snapshots Get list of snapshots for a collection
-
#recover(collection_name : String, snapshot_recover : Qdrant::Api::SnapshotRecover | Nil = nil, *, wait : Bool | Nil = nil) : Response(Qdrant::Api::RecoverFromUploadedSnapshot200Response)
Recover from a snapshot Recover local collection data from a snapshot.
-
#upload(collection_name : String, snapshot : File | Nil = nil, *, wait : Bool | Nil = nil, priority : Qdrant::Api::SnapshotPriority | Nil = nil, checksum : String | Nil = nil) : Response(Qdrant::Api::RecoverFromUploadedSnapshot200Response)
Recover from an uploaded snapshot Recover local collection data from an uploaded snapshot.
Constructor Detail
Instance Method Detail
Create collection snapshot Create new snapshot for a collection
Delete collection snapshot Delete snapshot for a collection
Download collection snapshot Download specified snapshot from a collection as a file
List collection snapshots Get list of snapshots for a collection
Recover from a snapshot Recover local collection data from a snapshot. This will overwrite any data, stored on this node, for the collection. If collection does not exist - it will be created.
Recover from an uploaded snapshot Recover local collection data from an uploaded snapshot. This will overwrite any data, stored on this node, for the collection. If collection does not exist - it will be created.