Last updated
Was this helpful?
Last updated
Was this helpful?
The Digibee Integration Platform has the pipeline as the main piece, which is a sequence of components that allow the connection of systems to establish data flow between them.
A pipeline consists of:
One trigger
At least one other component
A component is an element that receives a message and can interact with it or use the information it contains to execute any of the following activities:
Process messages by transforming the content of a message.
This last case is a bit more sophisticated and to understand it we need to examine it more closely.
When you use a component that iterates in collections, each collection item is processed in a separate flow called subpipeline. See the image below:
The main flow is executed up to the component in which the subpipeline is created (in the example above, this component is For Each, which is called “Process Records”).
The execution takes place in the subpipeline, where each item of the collection is processed individually.
When the execution of item 2 is finished, the control returns to the beginning of the subpipeline, which starts processing the next item, and so it continues until the collection is completely processed.
Once the entire collection is processed, the control returns to the For Each component, which directs the flow to the next component in the main flow (in this case, the Object Store component named “Read All Data”).
A trigger is the pipeline's activation condition, that is, the element that defines how the pipeline's execution is initiated – for example, by an external call, in response to an event, or through a schedule. To learn more, read the .
Call external services, such as a endpoint.
Change the execution flow by branching the pipeline flow based on conditions, like the component does.
Loop through collections, as the component does.
To learn more, read the article .
Learn more about the pipeline concept in the Digibee Integration Platform.