Keep your n8n jobs running without babysitting. The flow watches for failed runs on a schedule and retries them for you. It suits teams that manage many automations and want fast recovery when something breaks.
Every hour the Schedule Trigger starts the run. A Set node stores your n8n login and base URL. The HTTP Request signs in and captures a session cookie. The n8n node lists all executions with status set to error. A condition checks for runs already linked to a successful retry and skips those. Split in Batches handles items five at a time, and another HTTP Request calls the retry endpoint with loadWorkflow set to true. The loop continues until all items are processed. A Manual Trigger lets you test any time.
You need access to your n8n instance and a user that can view and retry executions. Add your username, password, and base URL, and create an n8n API credential for the executions list. Expect fewer alerts and faster cleanup, since failed jobs are retried within the hour. This helps with nightly data loads, webhook spikes, and queues that see brief errors. Turn it on after testing and watch the queue clear itself.