Sometimes when an execution is running too long, and I try to stop it, I get the message: “Maximum call stack size exceeded”. Does anybody know what the problem is?
Maximum call stack size exceeded is a very generic error that comes from JavaScript when either there is too much recursion, or when a function is receiving too many arguments.
during the execution do you have any node outputting more than 10,000 items?
Can you please share a workflow where you can reproduce this? That might really help fix this quicker.
I don’t have an example that would be of much use to you.
The (very heavy) flow contains a loop that iterates more than 2000 times. So I guess, the error doesn’t have so much to do with stopping the execution, but rather with the excessive number of iterations.