Bulk Data Syncs
If you have a large set of data to sync from a source system to a destination system, you can use the batchFlowTrigger pattern to page of records from the source system and process them in batches.
This pattern is useful for integrations that need to do an initial bulk import of data when first deployed, and then keep data up to date by processing incoming webhooks in real time. It can also be used to periodically re-sync data from a source system on a schedule.
In this video, we build a basic code-native flow that pages through a set of records, breaks the data into smaller batches, and processes each batch in a single execution path.
Resources: