Looping in Ensemble#
Looping is useful when you want to process multiple items or perform an action repeatedly, such as sending a message to every contact in your address book. Ensemble handles this repetitive processing automatically, meaning you don't need to specifically build loops into your pathways. There are some nodes where this isn't true.
Using loops in Ensemble#
Ensemble nodes take any number of items as input, process these items, and output the results. You can think of each item as a single data point, or a single row in the output table of a node.
Nodes usually run once for each item. For example, if you wanted to send the name and notes of the customers in the Customer Datastore node as a message on Slack, you would:
- Connect the Slack node to the Customer Datastore node.
- Configure the parameters.
- Execute the node.
You would receive five messages: one for each item.
This is how you can process multiple items without having to explicitly connect nodes in a loop.
Executing nodes once#
For situations where you don't want a node to process all received items, for example sending a Slack message only to the first customer, you can do so by toggling the Execute Once parameter in the Settings tab of that node This setting is helpful when the incoming data contains multiple items and you want to only process the first one.
Creating loops#
Ensemble typically handles the iteration for all incoming items. However, there are certain scenarios where you will have to create a loop to iterate through all items. Refer to Node exceptions for a list of nodes that don't automatically iterate over all incoming items.
Loop until a condition is met#
To create a loop in an Ensemble pathway, connect the output of one node to the input of a previous node. Add an IF node to check when to stop the loop.
Loop until all items are processed#
Use the Loop Over Items node when you want to loop until all items are processed. To process each item individually, set Batch Size to 1
.
You can batch the data in groups and process these batches. This approach is useful for avoiding API rate limits when processing large incoming data or when you want to process a specific group of returned items.
The Loop Over Items node stops executing after all the incoming items get divided into batches and passed on to the next node in the pathway so it's not necessary to add an IF node to stop the loop.
Node exceptions#
Nodes and operations where you need to design a loop into your pathway:
- Airtable:
- List: this operation executes once, not for each incoming item.
- Code node processes all the items based on the entered code snippet.
- Google Cloud Firestore:
- Get All: for the Collection and Document resources, this operation executes only once.
- Google Drive:
- List: this operation executes only once, not for each incoming item.
- Google Sheets:
- Read: this operation executes only once for the
Sheet
resource. - Update: this operation updates multiple rows if they're in the same range. It doesn't iterate through additional ranges.
- Read: this operation executes only once for the
- HTTP Request: you must handle pagination yourself. If your API call returns paginated results you must create a loop to fetch one page at a time.
- Iterable handles list operations in a single request, using the list ID defined for the first item. To address different lists in a single execution, you must create a loop with a batch size of 1.
- Microsoft SQL doesn't natively handle looping, so if you want the node to process all incoming items you must create a loop.
- Read Binary Files node will fetch the files from the specified path only once. This node doesn't execute multiple times based on the incoming data. However, if the path is referenced from the incoming data, the node will fetch the files for all the valid paths.
- RSS nodes executes only once regardless of the number of items in the incoming data.
- Spreadsheet node processes all the incoming data and creates a single file with all the incoming data. If you want to create individual files for each incoming item, you have to create a loop.