이 장기 실행 명령은 예정된 디버그 명령에 대한 데이터 흐름 디버그 세션을 시작합니다. 이 명령은 통합 런타임 정의와 연결하여 디버그 세션 클러스터의 크기/유형을 구성할 수 있습니다.
데이터 흐름 디버그 워크플로에 대한 PowerShell 명령 시퀀스는 다음과 같습니다.
Start-AzDataFactoryV2DataFlowDebugSession
Add-AzDataFactoryV2DataFlowDebugSessionPackage
Invoke-AzDataFactoryV2DataFlowDebugSessionCommand(다른 명령/대상에 대해 이 단계를 반복하거나 패키지 파일을 변경하기 위해 2-3단계를 반복)
Stop-AzDataFactoryV2DataFlowDebugSession
예제
예제 1
$job = Start-AzDataFactoryV2DataFlowDebugSession -ResourceGroupName adf -DataFactoryName jikma0601sea -AsJob
$job
Id Name PSJobTypeName State HasMoreData Location Command
-- ---- ------------- ----- ----------- -------- -------
1 Long Running... AzureLongRun... Running True localhost Start-AzDataFactoryV2D...
(After 5 minutes)
$job
Id Name PSJobTypeName State HasMoreData Location Command
-- ---- ------------- ----- ----------- -------- -------
1 Long Running... AzureLongRun... Completed True localhost Start-AzDataFactoryV2D...
$job.Output
SessionId Status
--------- ------
550effe4-93a3-485c-8525-eaf25259efbd Succeeded
이 cmdlet은 일반적인 매개 변수인 -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction 및 -WarningVariable 매개 변수를 지원합니다. 자세한 내용은 about_CommonParameters를 참조하세요.