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