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 Guys, I Have Set Up A Clearml Pipeline For My Simple Isolation Forest Model. But I Have Been Receiving This Error.

Hey guys, I have set up a clearml pipeline for my simple isolation forest model. But I have been receiving this error.

ValueError: Could not find queue named "services"

I have set the default execution queue as "default" .

pipe.set_default_execution_queue("default")

I am not sure what services queue means here. Can anyone help me?

  
  
Posted 2 months ago
Votes Newest

Answers 4


Hi @<1552101447716311040:profile|SteadySeahorse58>

ValueError: Could not find queue named "services"

Did you set an agent / auto-scaler ? where is the pipeline and its components will be running ?

  
  
Posted 2 months ago

i found the issue. I need to pass the queue name to pipe.start() as

pipe.start(queue="default")

I thought setting the default execution already takes care of this.

  
  
Posted 2 months ago

If you are using the "default" queue for the agent, notice you might need to run the agent with --services-mode to allow for multiple pipeline components on the same machine

  
  
Posted 2 months ago

By default, the queue is set to "services" in the start() method

  
  
Posted 2 months ago
88 Views
4 Answers
2 months ago
2 months ago
Tags