我正在研究 Azure 数据工厂 V2 管道,但是当我尝试在“ If Condition Activity ”中执行“自定义活动”时遇到问题。
如果我尝试使用 ADF Web 界面上的“测试运行”按钮测试我的管道,则会出现以下错误:
{"code":"BadRequest","message":"Activity PPL_ANYFBRF01 失败:链接服务引用无效。名称:LNK_BATCH_AZURE","target"...}
我确信链接服务引用的名称没有错误。如果我直接在我的管道中创建一个“自定义活动”,它就可以工作。
我认为这可能是我的活动的语法错误,但我找不到它。
这是我的“If Condition Activity”的 Json 模板(表达式“@equal(0,0)”仅用于测试目的):
{
"name": "IfPointComptageNotExist",
"type": "IfCondition",
"dependsOn": [
{
"activity": "PointComptage",
"dependencyConditions": [
"Succeeded"
]
},
{
"activity": "SousPointComptage",
"dependencyConditions": [
"Succeeded"
]
}
],
"typeProperties": {
"expression": {
"value": "@equal(0,0)",
"type": "Expression"
},
"ifTrueActivities": [
{
"type": "Custom",
"name": "CustomActivityTest",
"linkedServiceName": {
"referenceName": "LNK_BATCH_AZURE",
"type": "LinkedServiceReference"
},
"typeProperties": {
"command": "Batch.exe",
"resourceLinkedService": {
"referenceName": "LNK_BLOB_STORAGE",
"type": "LinkedServiceReference"
},
"folderPath": "/test/app/"
}
}
]
}
},
预先感谢您的帮助。