Skip to main content
Version: Latest (4.51.0)

Retry flow

The retry flow allows you to retry parts of other flows if they have implemented the retry functionality. The retry flow will search for any failed messages and reinserts them into the flow configured at publish component. The receiving flow needs to have a Retry input. The retry functionality is implemented by migration.failed, migration.retryTarget and the migration.retryMessage keys in the data model.

Settings

mongoConnection

The Mongo connection string including the database name to connect to.

retryTargets

A comma-separated and quoted list with the retry targets to process. The retry targets describe target components in the targeted flow for which the messages should be retried. The retry targets are depending on the targeted flow, to find all the available retry targets in your database use the query below.

Example of retry targets:

"GetParents", "GetBinary", "GetChildren"

Query for finding all available retry targets

distinct("migration.retryTarget")