#Are tasks interrupted in the middle of processing retried?
6 messages · Page 1 of 1 (latest)
Help is on the way! To mark it as solved, use the /solve command. In the meantime, here are some existing threads that may help you:
Documentation:
- Hooks Overview - Awaited vs. non-blocking hooks
- Tasks - Defining tasks in the config
- Using Local API Operations with Server Functions - Error Handling in Server Functions
- Using Local API Operations with Server Functions - Error Handling in Server Functions - Best Practices
- Quick Start Example - Step 1: Define a Task
Are tasks interrupted in the middle of processing retried?
In my experience, no. It will only be picked up again if it is marked as failed and you have retries enabled.
I queue a secondary job with a waitUntil that will restart stuck jobs to get around this
Ooh. That's smart. Thanks!