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
Is There A Way I Can Create A Dataset As Part Of A Pipeline And Be Able To See That This Dataset Came From This Pipeline / Task ?

Is there a way I can create a dataset as part of a pipeline and be able to see that this dataset came from this pipeline / task ?

  
  
Posted 2 years ago
Votes Newest

Answers 3


Sure:
Dataset.create(..., use_current_task=True)This will basically attach/make the main Task the Dataset itself (Dataset is a type of a Task, with logic built on top of it)
wdyt ?

  
  
Posted 2 years ago

Will try it out. Pretty impressed 🙂

  
  
Posted 2 years ago

Ah…that’s great!

  
  
Posted 2 years ago
477 Views
3 Answers
2 years ago
one year ago
Tags
Similar posts