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
Good Day All. I'M Working With The Pipelinecontroller For Creating Pipelines From Tasks. One Thing I'Ve Noticed Is That If I Do Pipe.Start_Locally() It Does Run The Pipeline But It Still Seems To Enqueue The Tasks And Runs Them On The Remote Agents. Am I

Good day all. I'm working with the PipelineController for creating pipelines from tasks. One thing I've noticed is that if I do pipe.start_locally() it does run the pipeline but it still seems to enqueue the tasks and runs them on the remote agents. Am I mistaken in assuming that not just the controller, but the tasks themselves would be run locally?

  
  
Posted 11 months ago
Votes Newest

Answers 2


Hi @<1545216070686609408:profile|EnthusiasticCow4> , start_locally() has the run_pipeline_steps_locally parameter for exactly this 🙂

None

  
  
Posted 11 months ago

Ah, perfect.

  
  
Posted 11 months ago