Grid Iterator
    • Dark
      Light

    Grid Iterator

    • Dark
      Light

    Article Summary

    Grid Iterator

    The Grid Iterator component enables users to loop over values of a simple sequence.

    This component implements a simple loop over the rows of a grid variable. It enables you to run an attached component multiple times, each time with different values set on any number of variables. Those variable can be referenced from the attached component.

    To attach the iterator to another component, use the blue output connector and link to the desired component. To detach, right-click on the attached component and click Disconnect from Iterator.

    If you need to iterate more than one component, put them into a separate orchestration job or transformation job and use a Run Transformation or Run Orchestration component attached to the iterator. In this way, you can run an entire ETL flow multiple times, once for each row of variable values.

    In Sequential mode, the iterations will always proceed in the same order that the data is held in the grid variable.

    All iterator components are limited to a maximum 5000 iterations.


    Properties

    PropertySettingDescription
    NameTextA human-readable name for the component.
    Grid VariableSelectChoose an existing grid variable to iterate. If you wish to define a new grid variable, read Grid Variables.
    Grid Variable MappingGrid ColumnEnter the grid column name.
    Variable NameChoose an existing variable.
    Break on FailureSelectNo: Attempt to run the attached component for each iteration, regardless of success or failure. This is the default setting.
    Yes: If the attached component does not run successfully, fail immediately.
    Note i: If a failure occurs during any iteration, the failure link is followed. This parameter controls whether it is followed immediately or after all iterations have been attempted.
    Note ii: This property is only available when Concurrency is set to Sequential. When set to Concurrent, all iterations will be attempted.
    ConcurrencySelectConcurrent: Iterations are run concurrently. This requires all "Variables to Iterate" to be defined as copied variables, so that each iteration gets its own copy of the variable isolated from the same variable being used by other concurrent executions.
    Sequential: Iterations are done in sequence, waiting for each to complete before starting the next. This is the default setting.
    Note: The maximum concurrency is limited by the number of available threads (2x the number of processors on your cloud instance).
    Record Values In Task HistorySelectChoose whether to record iteration values in the Matillion ETL Task History. The default setting is Yes.
    Stop On ConditionSelectSelect Yes to stop the iteration based on a condition specified in the Condition property. The default setting is No.
    For this property to be available, set Concurrency to Sequential.
    ModeSelectSelect the method of creating the condition.
    Simple: A no-code Condition UI will open, where users must specify an Input Variable, Qualifier, Comparator, and Value using drop-down menus and text fields. This is the default setting.
    Advanced: An editor will open, where users must write the condition manually using SQL.
    Condition (Simple mode)Input VariableAn input variable to form a condition around.
    QualifierIs: Compares the input variable to the value using the comparator.
    Not: Reverses the effect of the comparison, so "Equals" becomes "Not equals", "Less than" becomes "Greater than or equal to", etc.
    ComparatorSelect the comparator. Available comparison operators include "Less than", "Less than or equal to", "Equal to", "Greater than or equal to", "Greater than", and "Blank".
    ValueSpecify the value to be compared.
    Condition (Advanced mode)Text EditorManually write the condition in the editor. This editor accepts conditions written in JavaScript.
    Combine ConditionsSelectUse the defined conditions in combination with one another according to either And or Or.
    This property is only available when Mode is set to Simple.

    Variable Exports

    This component makes the following values available to export into variables:

    SourceDescription
    Iteration AttemptedThe number of iterations that this component attempts to reach (Max Iterations parameter).
    Iteration GeneratedThe number of iterations that have been initiated. Iterators terminate after failure so this number will be the successful iterations plus any potential failure.
    Iteration SuccessfulThe number of iterations successfully performed. This is the max iteration number, minus failures and any unattempted iterations (since the component terminates after failure).
    Attachments

    What's Next