Delete Backup File
Zilliz Cloud supports creating backups either manually or automatically.
For manually created backup files, Zilliz Cloud permanently retains them. Dropping a cluster will not remove the manually created backup files. Therefore, you can only manually delete them when they are no longer needed.
For automatically created backup files, Zilliz Cloud automatically removes them when they reach the end of their retention period or the corresponding cluster is dropped . However, you have the option to manually delete each auto-created backup file before then.
Before you start
Make sure the following conditions are met:
- You are granted the Organization Owner or Project Admin role in the target organization.
Procedures
- Cloud Console
- Bash
You will be prompted to verify your request to delete a backup file before Zilliz Cloud actually performs the deletion.
Delete a backup file. For details on parameters, refer to Delete Backup.
curl --request DELETE \
--url "${BASE_URL}/v2/clusters/${CLUSTER_ID}/backups/${BACKUP_ID}" \
--header "Authorization: Bearer ${TOKEN}" \
--header "Accept: application/json" \
--header "Content-type: application/json"
Expected output:
{
"code": 0,
"data": {
"backupId": "backup11_dbf5a40a6e5xxxx",
"backupName": "medium_articles_backup4"
}
}