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
Is There A Way To Pass Environment Variables When A Job Is Executed Over A Queue? (Either On The Agent Side Or On The Task.Init Side). I Need This Fix For Poetry For My Environment :

Is there a way to pass environment variables when a job is executed over a queue? (either on the agent side or on the task.init side). I need this fix for poetry for my environment : None

  
  
Posted one year ago
Votes Newest

Answers 7


@<1535069219354316800:profile|PerplexedRaccoon19> you can also use the environment section in the agent's clearml.conf configuration file to make specific environment variables will be set with certain values

  
  
Posted one year ago

Hi @<1535069219354316800:profile|PerplexedRaccoon19> , you can do it if you run in docker mode

  
  
Posted one year ago

You do need to run your agents in docker mode. You can do that using the --docker argument

  
  
Posted one year ago

Thanks, I can have docker + poetry execution modes then?

  
  
Posted one year ago

by special run args?

  
  
Posted one year ago

You can use Task.set_base_docker ( None )

To specify arguments, there is an example there 🙂

  
  
Posted one year ago

How?

  
  
Posted one year ago
830 Views
7 Answers
one year ago
one year ago
Tags