Tabulify - Step

Undraw My Documents

Step

A step (operation step) is an element of a pipeline that executes a data operation.

Syntax

The syntax of a step is the following:

pipeline:
    - name: "name" # The name of a step is the identifier and should not contains any space
      comment: "A long or short command/description of the step"
      op: "operationName" # the name of the operation to perform
      args: # The arguments to pass to the operation
          arg1:  value1 # the first argument
          arg2:  value2 # the second argument
          ....
          argN:  valueN # the Nieme argument

Optional Post Operation

A step can apply other optional data operation on its source data resources after

  • successful
  • or failed execution
Task Runner