我正在使用Azure Data Factory V2管道,但当我尝试在“ If Condition Activity ”中执行“自定义活动”时出现问题
如果我尝试使用ADF Web界面上的“测试运行”按钮测试我的管道,则会出现此错误:
{“code”:“BadRequest”,“message”:“活动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/"
}
}
]
}
},
提前感谢您的帮助。
答案 0 :(得分:1)
问题现在解决了。我重新创建了管道,它现在正在运行。
此致
于连。