From 213efd7e637b7f9a499ed1104483446848e45adf Mon Sep 17 00:00:00 2001 From: NedPK Date: Tue, 20 Aug 2024 20:47:27 +0300 Subject: [PATCH] restore exaples link fix, formatting --- docs/Backup and Restore/README.md | 2 +- .../Restore From Your Own Bucket.md | 12 +++++++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/docs/Backup and Restore/README.md b/docs/Backup and Restore/README.md index 62d4e28d..253ad990 100644 --- a/docs/Backup and Restore/README.md +++ b/docs/Backup and Restore/README.md @@ -196,7 +196,7 @@ SkySQL Users can fetch their already existing database restore schedules using t #### Restore List Examples -- [Examples](Restore List Examples.md) +- [Examples](Restore Listing Examples.md) ### **Create a Restore** diff --git a/docs/Backup and Restore/Restore From Your Own Bucket.md b/docs/Backup and Restore/Restore From Your Own Bucket.md index 62ff9b07..2459b701 100644 --- a/docs/Backup and Restore/Restore From Your Own Bucket.md +++ b/docs/Backup and Restore/Restore From Your Own Bucket.md @@ -52,8 +52,18 @@ curl --location 'https://api-test.skysql.com/skybackup/v1/restores' \ You can fetch your service ID from the Fully qualified domain name(FQDN) of your service. E.g: in dbpgf17106534.sysp0000.db2.skysql.com, 'dbpgf17106534' is the service ID. You will find the FQDN in the [Connect window](https://app.skysql.com/dashboard) - ID : the backup data file reference, available in your GCS bucket. + +!!! Note + Gzip compressed file expected. + + Example: + ```bash + gzip -c > .gz + ``` + - GCS_URI : the GCS bucket URI where the backup file is stored, format gs://BUCKET_NAME/ -!!! Note: Make sure the BUCKET_NAME has a trailing slash. +!!! Note + Make sure the BUCKET_NAME contains a trailing slash. - BACKUP_METHOD : the backup method used to create the backup file.
Available options: ```mariabackup, mysqldump``