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, Is There A Quick Way To Create New Pipeline From Few Other/"Sub" Pipelines?

Hi,
is there a quick way to create new pipeline from few other/"sub" pipelines?

  
  
Posted one year ago
Votes Newest

Answers 10


how?
because I tried using PipelineController to create new pipeline and on add_step I just added as base_task_id the id of the pipeline. but it failed with an error 😕
am I doing something wrong ?

  
  
Posted one year ago

Hi @<1559711623147425792:profile|PlainPelican41> , you can re-run an existing pipeline using different parameters from the UI. Otherwise, you need to create new pipelines with new code 🙂

  
  
Posted one year ago

what I mean is that I want to create a new pipeline of few existing pipelines:
ex:
new_pipeline : input -> existing_pipeline_1 -> existing_pipeline_2
can I do such a thing?

  
  
Posted one year ago

Yes, you'll need to connect them via code

  
  
Posted one year ago

explain 🤔

  
  
Posted one year ago

I meant writing a new pipeline controller that will incorporate the previous pipelines as steps. What is the error that you're getting? Can you provide a snippet?

  
  
Posted one year ago

this errors only appears to occur only when I enter on add_step an id of a pipeline. If I enter an id of single task no error occur.

  
  
Posted one year ago

image

  
  
Posted one year ago

@<1523701070390366208:profile|CostlyOstrich36> I still didn't managed to solved this issue .. can u please help me with that or send and working example of valid pipeline of pipelines (if possible ofc 🙂 )?

  
  
Posted one year ago

You write code for a new pipeline 🙂

  
  
Posted one year ago