Hi everyone,
I have a workflow that retrieves 106 items from Airtable and needs to process them one by one through the same sequence of nodes.
I tried using the Loop Over Items node with Batch Size = 1. As a result, the loop:
- Accumulates all processed items and passes them forward (1 → 2 → 3 … items), which eventually causes memory issues.
What I want to achieve:
-
Take each item from Airtable and pass it individually through my sequence of nodes.
-
Once the item is processed, move to the next one until all 106 items are processed.
-
Avoid accumulation of processed items (only ever have 1 item in the flow at a time).
Questions:
-
How can I build this kind of one-by-one iteration without item accumulation in n8n?
-
Should I replace Loop Over Items with something else?
So there what i need
And here is what I got when start execution
As you see each time it send me all previous items +1
Thanks in advance for any suggestions!



