Where can i get file uri while restoring from snapshot in Qdrant Cloud. #3747
-
The documentation of Qdrant mentions about restoring from file uri inside of qdrant cloud. IN SHORT: i want to recover snapshot in qdrant cloud using the api with out downloading and uploading it again.(possibly with FILE URI)
https://qdrant.tech/documentation/concepts/snapshots/#recover-from-a-url-or-local-file But i can't find anywhere mentioning how i can build the file UI from the qdrant cloud. File URI can be I don't want to download and restore from file if possible since the snapshot is already inside of Qdrant cloud but i can't seem to find any way to get the file path or file URI that i can give to the below request PUT /collections/{collection_name}/snapshots/recover?wait=false
{
"location": "https://QDRANT_HOST/collections/COLLECTION_NAME/snapshots/SNAPSHOT_NAME.snapshot"
} But it is not working like above i tried many combinations but i couldn't achieve the goal. Can somebody help? IN SHORT i want to recover snapshot in qdrant cloud using the api with out downloading and uploading it again.(possibly with FILE UI |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
I'm not sure if we support using file URIs in cloud. I'll forward your question to the cloud team, as they're better qualified to answer this. |
Beta Was this translation helpful? Give feedback.
-
Hi @chapimenge3 , Qdrant cloud snapshots are saved in default directory which is Here is the HTTP request template for it: PUT collections/{collection_name}/snapshots/recover
{
"location": "file:///qdrant/snapshots/{collection_name}/{snapshot_name}"
} |
Beta Was this translation helpful? Give feedback.
Hi @chapimenge3 ,
Qdrant cloud snapshots are saved in default directory which is
/qdrant/snapshots
. Using this info you can constract snapshot file URI and use it.Here is the HTTP request template for it: