GitHub user dave-csc added a comment to the discussion: Pipeline Executor return no rows
If I get correctly, you need to get the output of two distinct pipelines and merge them somehow in a parent pipeline. Then you can call each one with a Pipeline Executor, but as mentioned above you need to trigger them with a single row: use a Generate row transform, configure it to create a single row and no schema. Link this transform to (all) the subsequent Pipeline Executor(s), this is enough to trigger it/them (remember to "copy" the row and not to "distribute" it) Finally, link the Pipeline Executor output(s) to the merging transform GitHub link: https://github.com/apache/hop/discussions/5965#discussioncomment-14900377 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
