nerdexam
Microsoft

70-475 · Question #83

You have a Microsoft Azure Data Factory pipeline. You discover that the pipeline fails to execute because data is missing. You need to rerun the failure in the pipeline. Which cmdlet should you use?

The correct answer is B. Set-AzureRmDataFactorySliceStatus. Use some PowerShell to inspect the ADF activity for the missing file error. Then simply set the dataset slice to either skipped or ready using the cmdlet to override the status. Set-AzureRmDataFactorySliceStatus -ResourceGroupName $ResourceGroup -DataFactoryName…

Operationalize Big Data solutions

Question

You have a Microsoft Azure Data Factory pipeline. You discover that the pipeline fails to execute because data is missing. You need to rerun the failure in the pipeline. Which cmdlet should you use?

Options

  • ASet-AzureRmAutomationJob
  • BSet-AzureRmDataFactorySliceStatus
  • CResume-AzureRmDataFactoryPipeline
  • DResume-AzureRmAutomationJob

How the community answered

(35 responses)
  • A
    9% (3)
  • B
    74% (26)
  • C
    14% (5)
  • D
    3% (1)

Explanation

Use some PowerShell to inspect the ADF activity for the missing file error. Then simply set the dataset slice to either skipped or ready using the cmdlet to override the status. Set-AzureRmDataFactorySliceStatus -ResourceGroupName $ResourceGroup -DataFactoryName $ADFName.DataFactoryName -DatasetName $Dataset.OutputDatasets -StartDateTime $Dataset.WindowStart -EndDateTime $Dataset.WindowEnd -Status "Ready" ` -UpdateType "Individual" failing-when-no-files-available-in-the-source

Topics

#Azure Data Factory#pipeline recovery#slice status#PowerShell

Community Discussion

No community discussion yet for this question.

Full 70-475 Practice