ContributionsMost RecentMost LikesSolutionsRe: Pipeline execute maximum recursion calls depth Hi @koryknick - My scenario is I have to load all the data from the given data source. The maximum records it can send me in one iteration is 50k(its configurable) I have designed pipeline in such a way, pipeline XYZ first invokes the backend using soap execute snap, which returns 50k records in first iteration and I have used router snap to check the condition if the record count is less than 50k then i stop the pipeline else I invoke same pipeline XYZ within itself …(XYZ calling XYZ) until the condition is met… This recursive invocation ryt… Re: Pipeline execute maximum recursion calls depth Hi @koryknick - Even I am making recursive calls using pipeline execute snap with condition until all records from the soap services are extracted i call same pipeline in recursive mode…And in the image i have dedelected the group pipelines checkbox hence its not on tree structure, please find the below image which depicts the recursive call. Re: Pipeline execute maximum recursion calls depth Hi @koryknick - Please find the below attached screenshots where both error at 64th iteration and also the iterations that have reached 99 is attached second image has gone until 99th iteration… Pipeline execute maximum recursion calls depth Hi Team, I have designed pipeline to make recursive calls using pipeline execute snap…in one scenario i got an error at the 64th iteration tat it ‘‘cannot execute any more child pipelines’’ and i found in pipeline execute snap documentation that it cannot exceed more than 64 depth b4 they begin failing… But wen i executed the same pipeline after a week…its taking 150 iterations…how is this possible…