Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Hi Everyone Trying To Add Cloudflare R2 Storage To Api.Files_Server Or Sdk.Development.Default_Output_Uri As Https://<Id>.

Hi everyone
Trying to add cloudflare r2 storage to api.files_server or sdk.development.default_output_uri as https://<id>. r2.cloudlarestorage.com to upload clearml datasets, like to s3 minio storage, but it doesn’t work (aws credentials also in my environment)
I had this error: Invalid Argument: Authorization
Can someone help what is wrong?

  
  
Posted one year ago
Votes Newest

Answers 5


@<1523701087100473344:profile|SuccessfulKoala55> Thanks!
After some research this config works:
s3 {
key: "<AWS_ACCESS_KEY_ID>"
secret: "<AWS_SECRET_ACCESS_KEY>"
region: "auto"
use_credentials_chain: true
credentials: [
# specifies key/secret credentials to use when handling s3 urls (read or write)
{
host: "<id>. r2.cloudflarestorage.com "
bucket: "<bucket_name>"
key: "<AWS_ACCESS_KEY_ID>"
secret: "<AWS_SECRET_ACCESS_KEY>"
multipart: false
secure: true
}
]
}

And output_uri in this format “s3://<id>. r2.cloudflarestorage.com/ <bucket_name>”

  
  
Posted one year ago

@<1554638179657584640:profile|GlamorousParrot83> the URL to the server should start with s3:// and not http, it should also include the port number (443 is case of a secure url)

  
  
Posted one year ago

@<1554638179657584640:profile|GlamorousParrot83> , can you add also the full log?

  
  
Posted one year ago

Hi @<1554638179657584640:profile|GlamorousParrot83> , how did you set up your clearml.conf file? Can you share?

  
  
Posted one year ago

@<1523701087100473344:profile|SuccessfulKoala55> Like this

  
  
Posted one year ago