edit pipeline (#702)

This commit is contained in:
pollfly 2023-11-05 10:31:48 +02:00 committed by GitHub
parent 8c4d299efd
commit d1beaa45e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 5 deletions

View File

@ -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 ```python
pipe.set_default_execution_queue('default') 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 the `examples` project. The second step's dependency upon the first step's completion is designated by setting it as
its parent. its parent.
Custom configuration values specific to this step execution are defined through the `parameter_override` parameter, The `parameter_override` parameter is used to set specific execution configuration for each step.
where the first step's artifact is fed into the second 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` Special pre-execution and post-execution logic is added for this step through the use of `pre_execute_callback`
and `post_execute_callback` respectively. and `post_execute_callback` respectively.

View File

@ -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 1. Set an execution queue through which pipeline steps that did not explicitly specify an execution queue will be
(unless overridden by the `execution_queue` parameter of the `add_function_step` method). executed. These pipeline steps will be enqueued for execution in this queue.
```python ```python
pipe.set_default_execution_queue('default') pipe.set_default_execution_queue('default')