Questions
In each chapter, you will find a couple of questions to validate your understanding of the topics discussed in this chapter.
- What affects the execution order of the pipeline steps?
a. The order in which the steps were defined when constructing the
Pipeline
object.b. The data dependencies between the steps.
c. All steps execute in parallel, and you cannot affect the execution order.
- True or false: All steps within a pipeline need to execute within the same compute target and
Environment
. - True or false:
PythonScriptStep
, by default, reuses the previous execution results if nothing has changed in the parameters or the code files. - You are trying to debug a child run execution issue. Which of the following methods should you call in the
StepRun
object?a.
get_file_names
b.
get_details_with_logs
c.
get_metrics
d.
get_details
- You have just defined a pipeline in Python code. What steps do you need to make to schedule a daily execution of that pipeline?