-
Hi, I am trying to configure a backup to Scaleway glacier but encountering this error Here my configuration file [repository]
repository = "opendal:s3"
repo-hot = "opendal:s3"
password = "*********"
[repository.options-cold]
bucket = "coldbucket"
region = "fr-par"
root = '/'
default-storage-class = "GLACIER"
access_key_id = "*************"
secret_access_key = "**********************"
[repository.options-hot]
bucket = "hotbucket"
region = "fr-par"
root = '/'
default-storage-class = "STANDARD"
access_key_id = "*************"
secret_access_key = "**********************" There the command i used for init rustic -r opendal:s3:https://s3.fr-par.scw.cloud/coldbucket --repo-hot opendal:s3:https://s3.fr-par.scw.cloud/hotbucket init I can't remember all the things I tried, but every time I had this error or that one
I've seen this issue but it doesn't seem to be the same problem. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Looks like nobody was interested yet to work on it... Scaleway Glacier is listed in "This section is used to track services that no developers interested in. Please feel free to take one of them." section. Given that it is S3 it might be actually quite simple opendal PR - if you need it you have to look into it. |
Beta Was this translation helpful? Give feedback.
-
There is no native support for scaleway. But if they offer a S3-compatible API, s3 works through opendal. @Modrizen The syntax you are using in the config profile seems correct for me, however the Best actually is to just use the config and not specify the repostory or repo-hot at all as CLI options. |
Beta Was this translation helpful? Give feedback.
There is no native support for scaleway. But if they offer a S3-compatible API, s3 works through opendal.
@Modrizen The syntax you are using in the config profile seems correct for me, however the
-r opendal:s3:https://s3.fr-par.scw.cloud/coldbucket --repo-hot opendal:s3:https://s3.fr-par.scw.cloud/hotbucket
is overwriting the config and not working. It must beopendal:s3
and all other options like the bucket path has to be specified in the options separately.Best actually is to just use the config and not specify the repostory or repo-hot at all as CLI options.