For my workflow processing 20–50MB JSON payloads, is increasing container memory sufficient, or does Node.js heap fragmentation require architectural adjustments cause I am confused
Describe the problem/error/question
What is the error message (if any)?
Please share your workflow
(Select the nodes on your canvas and use the keyboard shortcuts CMD+C/CTRL+C and CMD+V/CTRL+V to copy and paste the workflow.)
Good point on fragmentation. For large payloads (20-50MB), streaming helps, but also consider breaking them into smaller chunks (5-10MB) and processing in parallel batches. Node.js struggles with single massive objects even with more memory. Also watch your Code nodes—if they’re doing multiple transformations, offload to database queries or external APIs instead. That keeps garbage collection manageable.