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, I Am Having Trouble Getting The Sdk To Connect To S3 Properly. I Can Run My Clearml Dataset Operations Properly Using The Cli, But When I Try To Use The Sdk In My Venv, I Get Access Denied

Hi, I am having trouble getting the SDK to connect to S3 properly. I can run my clearml dataset operations properly using the CLI, but when I try to use the SDK in my venv, I get access denied

  
  
Posted one month ago
Votes Newest

Answers


Here's the actual error log from my python script:

  File "/home/me/venv/lib/python3.12/site-packages/clearml/datasets/dataset.py", line 1385, in create
    instance = cls(
               ^^^^
  File "/home/me/venv/lib/python3.12/site-packages/clearml/datasets/dataset.py", line 265, in __init__
    task.output_uri = True
    ^^^^^^^^^^^^^^^
  File "/home/me/venv/lib/python3.12/site-packages/clearml/task.py", line 1649, in output_uri
    raise ValueError(
ValueError: Could not get access credentials for '
' , check configuration file ~/clearml.conf

My config file has the following section:

sdk{
   aws {
        s3 {
            key: "MYKEYXXX"
            secret: "MYPRIVKEYXXXX"
            use_credentials_chain: false
  
  
Posted one month ago
2K Views
1 Answer
one month ago
one month ago
Tags