diff --git a/examples/pipeline/pipeline_from_decorator.py b/examples/pipeline/pipeline_from_decorator.py index 9247ad5b..214988c8 100644 --- a/examples/pipeline/pipeline_from_decorator.py +++ b/examples/pipeline/pipeline_from_decorator.py @@ -91,8 +91,9 @@ def executing_pipeline(pickle_url, mock_parameter='mock'): if __name__ == '__main__': # set the pipeline steps default execution queue (per specific step we can override it with the decorator) PipelineDecorator.set_default_execution_queue('default') - # run the pipeline steps as subprocess on the current machine, for debugging purposes - # PipelineDecorator.debug_pipeline() + # Run the pipeline steps as subprocesses on the current machine, great for local executions + # (for easy development / debugging, use `PipelineDecorator.pipeline()` to execute steps as regular functions) + # PipelineDecorator.run_locally() # Start the pipeline execution logic. executing_pipeline(