05-15-2022 11:38 PM
Hi,
Is there any way to send data file from one intermediate child pipeline to another?
Thanks
05-17-2022 08:22 AM
I need to accumulate error from all child pipelines to one single file. For one pipeline I can do this by using error view and creating a file. But what about errors from other child pipelines.
Also for clarity I have a master pipeline which is taking one input file and multiple child pipelines are working by that sequentially.
05-17-2022 10:12 AM
@abhinavjha - are you using the error view on the Pipeline Execute? If yes, you could use the Union snap to combine the error views from all children before writing to file.
05-17-2022 01:06 PM
I am using error view in the child pipeline not in the pipeline execute of parent and that child is giving different output to parent ( the output I need ). I also need error file from all the child pipeline as one single document.
05-17-2022 01:14 PM
OK - so each child pipeline will write to the error file, right?
What are you doing with this error file? Does it need to be permanently written to any particular location, such as AWS S3, Windows share, or SFTP? Or are you doing something with it (like email it as an attachment), then delete it?
These answers will help dictate your solution.
05-18-2022 08:35 AM
We are trying to collect all error information as one single file from all the child pipelines and store them on a shared location. A different team will do the analysis on those error record and provide us with correct records in next cycle.
For now we are using filewriter to get error in each child pipeline. Is there any way so that I can use filewriter in a separate child pipeline which can append all the error files it receives from other child because file writer only overwrites and not append.
Master → Child Pipeline 1 – Produces Error -1
→ Child Pipeline 2 – Produces Error - 2
We want to merge Error 1 and Error 2 in a single file.