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
Hey! I Was Trying To Use My Minio Instance For Artifacts Storage But There Is Not Way Of Making It Work. Maybe I Am Missing Something. This Is My Clearml.Conf Everything Else Is Working Fine.

Hey! i was trying to use my minio instance for artifacts storage but there is not way of making it work. Maybe i am missing something. This is my clearml.conf
Everything else is working fine.

` aws {
s3 {
host: "s3.myhost.tld:443"
key: "<mykey>"
secret: "<mysecret>"
secure: true

    credentials: [
        {
            host: "s3.myhost.tld:443"
            key: "<mykey>"
            secret: "<mysecret>"
            secure: true
            multipart: false
        }
    ]
}

}

api {
web_server:
api_server:
file_server:
credentials {
"access_key" = "<clearmlkey>"
"secret_key" = "clearmlsecret>"
}
} `

  
  
Posted one year ago
Votes Newest

Answers 6


I installed clearml from source and printed the internal S3 configurations, basically key and secret are empty

  
  
Posted one year ago

if i print config_list from def from_config(cls, s3_configuration): in file bucket_config.py line 121 i get
{'key': '', 'secret': '', 'region': '', 'multipart': True, 'use_credentials_chain': False, 'bucket': 'clearml', 'host': 's3.myhost.tld:443', 'token': '', 'extra_args': ConfigTree()}

  
  
Posted one year ago

The error is
2022-11-28 14:40:17,099 - clearml.storage - ERROR - Failed creating storage object Reason: Missing key and secret for S3 storage access ( )

  
  
Posted one year ago

Everything works fine i force those values using AWS_ACCESS_KEY_ID AWS_SECRET_ACCESS_KEY env variables

  
  
Posted one year ago

Nevermind my aws config was not under sdk :face_palm:

  
  
Posted one year ago

Hi TrickyFox41 , are you getting some sort of error?

  
  
Posted one year ago
700 Views
6 Answers
one year ago
one year ago
Tags
aws