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

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