Performance Tips in n8n

From the n8n cheat sheet ยท Scaling & Performance ยท verified Jul 2026

Performance Tips

Optimize workflow performance

bash
# Batch Processing
Use Split In Batches node for large datasets
Process 100 items at a time instead of 10,000

# Rate Limiting
Add Wait node between API calls (1-2 seconds)
Prevents 429 Too Many Requests errors

# Binary Data
N8N_DEFAULT_BINARY_DATA_MODE=filesystem
Use S3 for large files in queue mode

# Incremental Processing
Store last ID in static data
Query only new records: WHERE id > lastId
๐Ÿ’ก Use Split In Batches for large datasets (100 at a time)
โšก Add Wait nodes between API calls to avoid rate limits
๐Ÿ“Œ Store last processed ID for incremental ETL
๐ŸŽฏ Break 50+ node workflows into sub-workflows

More n8n tasks

Back to the full n8n cheat sheet