10-21-2024 09:05 AM
Hi,
I have a parent pipeline that is receiving an array of client_code. I have mapped and routed it to two child pipelines and would like to execute the each of the child pipeline for each of the code.
Let's say for 3 incoming client_codes. I want to execute each out of two child pipeline 3 times (so six parallel executions). Following is screenshot of parent pipeline.
Solved! Go to Solution.
10-24-2024 01:58 AM
If thats the case then, in a Mapper Snap(befor the JSON Splitter), parse the String to JSON using JSON.parse function.
10-24-2024 01:58 AM
If thats the case then, in a Mapper Snap(befor the JSON Splitter), parse the String to JSON using JSON.parse function.
10-24-2024 07:57 AM
One last question, Is it possible to process all client_codes in parallel? My current setup is passing the JSON details using router to several pipeline execute commands that call API child execution parallel. But I want to call parallel per client basis as well. (parallel execution of each document)