From d1beaa45e772b17b9c5490049086be6656574537 Mon Sep 17 00:00:00 2001 From: pollfly <75068813+pollfly@users.noreply.github.com> Date: Sun, 5 Nov 2023 10:31:48 +0200 Subject: [PATCH] edit pipeline (#702) --- docs/guides/pipeline/pipeline_controller.md | 7 ++++--- docs/guides/pipeline/pipeline_functions.md | 4 ++-- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/docs/guides/pipeline/pipeline_controller.md b/docs/guides/pipeline/pipeline_controller.md index bf6901d1..7b181c4e 100644 --- a/docs/guides/pipeline/pipeline_controller.md +++ b/docs/guides/pipeline/pipeline_controller.md @@ -41,7 +41,8 @@ The sections below describe in more detail what happens in the controller task a ) ``` -1. Set the default execution queue to be used. All the pipeline steps will be enqueued for execution in this queue. +1. Set the execution queue through which pipeline steps that did not explicitly specify an execution queue will be + executed. These pipeline steps will be enqueued for execution in this queue. ```python pipe.set_default_execution_queue('default') @@ -65,8 +66,8 @@ The sections below describe in more detail what happens in the controller task a the `examples` project. The second step's dependency upon the first step's completion is designated by setting it as its parent. - Custom configuration values specific to this step execution are defined through the `parameter_override` parameter, - where the first step's artifact is fed into the second step. + The `parameter_override` parameter is used to set specific execution configuration for each step. + In the code below, the first step's artifact is fed into the second step. Special pre-execution and post-execution logic is added for this step through the use of `pre_execute_callback` and `post_execute_callback` respectively. diff --git a/docs/guides/pipeline/pipeline_functions.md b/docs/guides/pipeline/pipeline_functions.md index 30492351..8fb5cd89 100644 --- a/docs/guides/pipeline/pipeline_functions.md +++ b/docs/guides/pipeline/pipeline_functions.md @@ -34,8 +34,8 @@ logged as required packages for the pipeline execution step. ) ``` -1. Set the default execution queue to be used. All the pipeline steps will be enqueued for execution in this queue - (unless overridden by the `execution_queue` parameter of the `add_function_step` method). +1. Set an execution queue through which pipeline steps that did not explicitly specify an execution queue will be + executed. These pipeline steps will be enqueued for execution in this queue. ```python pipe.set_default_execution_queue('default')