Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Info

Available since version 1.0.0


Simple Pipeline, executes every stage as a sequence

...

once, this includes the process and the post process

Properties

PropertyDescriptionDefaultTypeRequired
enableEnable pipeline configuration for execution.truebooleanNo
stagesList of stages to be executed by the pipeline.
listYes

Example Usage

Code Block
languagepy
themeDJango
PIPELINE = Pipeline(
    enable=True,
    stages=[
        _highlight_stage,
        _filter_stage,
        _aggregation_stage,
        _dynamic_results,
        _query_stage
    ]
)