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
How Do We Configure S3 Bucket Credentials When Working With The Autoscaling Service?

How do we configure s3 bucket credentials when working with the autoscaling service?

  
  
Posted 3 years ago
Votes Newest

Answers 11


"extra_clearml_conf" : """ aws { s3 {key: "A" secret : "B" region: "C" }} """,

  
  
Posted 3 years ago

The overall format seems to be slightly different between my local clearml conf and the accepted strings

  
  
Posted 3 years ago

I just sent you a dm with the scrubbed autoscaler config, would you be able to give some pointers on overarching things that are wrong?

  
  
Posted 3 years ago

when copying my clearml config into the "Edit configuration menu" and running it, I am getting a Json decode error (expected "," before the aws)

  
  
Posted 3 years ago

Thanks! 🙂

  
  
Posted 3 years ago

Thanks for the quick reply! I tried your suggestion and its telling me that the aws line is an invalid control character now

  
  
Posted 3 years ago

Sure

  
  
Posted 3 years ago

any idea how to fix this? https://allegro.ai/clearml/docs/docs/examples/services/aws_autoscaler/aws_autoscaler.html seems to indicate we can just directly past the info into the block string

  
  
Posted 3 years ago

Hi AdventurousRabbit79
Try:
"extra_clearml_conf" : "aws { s3 {key: A, secret : B, region: C, }} ",Generally speaking no need for the quotes on the secret/key
You also need the comma to separate between keys.
You can test if it is working by adding the same string to your local clearml.conf and importing the cleaml package

  
  
Posted 3 years ago

AgitatedDove14

  
  
Posted 3 years ago
654 Views
11 Answers
3 years ago
one year ago
Tags