This topic was automatically generated from Slack. You can find the original thread here.
Is there a way to increase the timeout limit? I need more than 750 seconds. If yes, who do I reach out to and how can I increase this limit?
This topic was automatically generated from Slack. You can find the original thread here.
Is there a way to increase the timeout limit? I need more than 750 seconds. If yes, who do I reach out to and how can I increase this limit?
Nope it’s a hard limit. But you can split your workflow into several so the processing is split and you can stay under the limit for each
Okay, thanks for the reply.
What’s your use case?
There may be some workarounds depending on what you’re trying to do, for example: GitHub
Processing long video. I call some external APIs, so we have sometimes our customers upload 10-minute videos and sometimes they have 3-hour long videos. Noise cleaning and such.
Anyway, for now, I use sleep.
Yea, check this out — GitHub
Ah… intersting… that is useful thanks.
You can suspend the execution of your workflow and either poll the status of an external API then resume, or accept a callback that will resume execution
And there’s not really a limit for how long your workflow can stay paused in that case (technically up to a year!)
That resume thing is very useful! I did not know about it.
Proably was the thing that I was looking for (but did not read the doc - classic!).
Thank you appreciate it.
Yea it’s awesome