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
Similar Question But When Running A Pipeline, Can I Control The Tags That The Tasks A Pipeline Creates?

Similar question but when running a pipeline, can I control the tags that the tasks a pipeline creates? add_pipeline_tags adds tags from pipeline to the tasks I suppose? But I also need to clear existing tags in those created tasks

  
  
Posted 2 years ago
Votes Newest

Answers 4


pipeline, can I control the tags that the tasks a pipeline creates? 

add_pipeline_tags

  adds tags from pipeline to the tasks I suppose? But I also need to clear existing tags in those created tasks

add_pipeline_tags will add the unique ID of the pipeline execution, if you want to add specific tags you can use the task_overrides and provide:
pipe.add_step(..., task_overrides={'tags': ['my', 'tags']})

  
  
Posted 2 years ago

AgitatedDove14 - on a similar note, using this is it possible to add to requirements of task with task_overrides?

  
  
Posted 2 years ago

This worked, thanks.

  
  
Posted 2 years ago

using this is it possible to add to requirements of task with task_overrides?

Correct, but you will be replacing (not adding) requirements

  
  
Posted 2 years ago