Exam DP-100 All QuestionsBrowse all questions from this exam
Question 379

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.

After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.

You create an Azure Machine Learning pipeline named pipeline1 with two steps that contain Python scripts. Data processed by the first step is passed to the second step.

You must update the content of the downstream data source of pipeline1 and run the pipeline again.

You need to ensure the new run of pipeline1 fully processes the updated content.

Solution: Set the regenerate_outputs parameter of the pipeline1 experiment’s run submit method to True.

Does the solution meet the goal?

    Correct Answer: A

    Setting the regenerate_outputs parameter of the pipeline1 experiment’s run submit method to True ensures that all step outputs are regenerated and data reuse is disallowed for this run. This means the pipeline will fully process the updated content, meeting the requirement to ensure a new run fully processes the updated data.

Discussion
PiddiOption: A

Answer is Correct: https://learn.microsoft.com/en-us/python/api/azureml-pipeline-core/azureml.pipeline.core.pipeline.pipeline?view=azure-ml-py regenerate_outputs bool default value: False Indicates whether to force regeneration of all step outputs and disallow data reuse for this run. If False, this run may reuse results from previous runs and subsequent runs may reuse the results of this run.

gogo12Option: B

this should be no

Piddi

The Answers is A.

VeraKoOption: A

The answer is Yes "regenerate_outputs: Whether to force regeneration of all step outputs and disallow data reuse for this run, default is False." https://learn.microsoft.com/en-us/python/api/azureml-pipeline-core/azureml.pipeline.core.pipeline.pipeline?view=azure-ml-py&viewFallbackFrom=azure-ml-pyregenerate_outputs

sap_dgOption: A

Correct