Error Handling Patterns in n8n

From the n8n cheat sheet · Error Handling · verified Jul 2026

Error Handling Patterns

Strategies for handling workflow errors

yaml
# Node-Level Settings
Settings Tab:
  Retry On Fail: Yes
  Max Tries: 3
  Wait Between Tries: 1000ms
  Continue On Fail: Yes (for non-critical operations)

# Error Output (Red Connector)
Connect red output → Slack notification
Connect red output → Log to database
💡 Connect red error output to notification nodes
⚡ Create centralized error workflow with Error Trigger
📌 Use exponential backoff: 1s → 2s → 5s → 13s
🎯 Classify errors: retry vs fix vs fail fast
Back to the full n8n cheat sheet