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
Hi, I Am Using

Hi,
I am using TaskScheduler to start a pipeline once per hour, that sequentially executes tasks.
My current solution is that I have three execution queues, with three different worker processes.
Process 1: Executes the TaskScheduler,
Process 2: Executes the Pipeline,
Process 3: Executes the individual tasks of the pipeline (e.g. data ingestion, preparation, training).

Can I reduce the amount of queues/workers needed? Right now the TaskScheduler blocks one worker entirely and it won’t start a second TaskScheduler or the Pipeline-Exection.

Thank you!
Best,
Valentin

  
  
Posted 3 months ago
Votes Newest

Answers 2


Hi @<1695969549783928832:profile|ObedientTurkey46>
Use --services-mode in the agent , it will run many Tasks on the same machine, this is usually associated with the services queue, but can be run on any queue. This way you could have the same machine easily running those multiple "control" tasks.
wdyt?

  
  
Posted 3 months ago

awesome! works like charm 🙂
Thank you!

  
  
Posted 3 months ago
363 Views
2 Answers
3 months ago
3 months ago
Tags