I need to receive notification when a scenario finishes or is completed.
For context: I have a scenario that is too large and constantly hits the 45-minute limit. I am planning to send chunks of the data to avoid hitting the time limit. I need to receive a notification when the current scenario is completed so that we can trigger the second chunk.
Currently, I do not see a built in notification in make that notify when the scenario is completed
Please provide any idea/suggestion about how to do this
Hey,
Do you mind sharing what you mean by ‘chunk’? what kind of trigger do you have in your scenario? webhook?
Hi, By chunk I mean that I am dividing the data sent in smaller pieces. e.g. if I am sending 2000 items that I need to process, I am sending now 4 chunks of 500
and Yes, the trigger is a webhook
Going by your analogy, if 1 webhook entry contains 500 items, then you can simply add an Array Aggregator + Email module at the end of your scenario. The Array Aggregator is important so that you only get 1 email, not 500
Thanks for your comments. My scenario has several routers, so I think the solution you propose can work with a single scenario. Since there are several routes in my case, it might work if I create a variable and validate when the variable reaches the length of the webhook received.
1 Like