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 one year ago
Votes Newest

Answers 4


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 one year ago

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 one year 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 one year ago

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

  
  
Posted one year ago
548 Views
4 Answers
one year ago
one year ago
Tags