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
Clearml-Agent Vs Clearml-Agent-Services ? Same Thing?

clearml-agent vs clearml-agent-services ? same thing?

  
  
Posted 3 years ago
Votes Newest

Answers 4


ClearML Agent Services is a ClearML Agent running on the server machine with the --services option

  
  
Posted 3 years ago

(as i see the services worker is only in the services-queue, and not my default queue (where my other servers/workers are)

So basically the service-mode is just a flag passed to the agent, and the services queue is the name of the queue it will pull from.

If i want a normal worker also

You can just add another section to the docker-compose, or run it manually after you spin the docker-compose.

LazyFox65 wdyt ?

  
  
Posted 3 years ago

ok - so if i want a normal worker also on the server with service queue - do i also setup an agent? (as i see the services worker is only in the services-queue, and not my default queue (where my other servers/workers are) ?

  
  
Posted 3 years ago

It's job is to monitor the services queue and run any service task you enqueue there (these are typically maintenance tasks that do not require a GPU)

  
  
Posted 3 years ago