在 ADF V2 中执行 Azure ML Batch Execution Activity 时出现以下错误。
我在 ML Activity 中编写了以下 JSON 查询
{
"name": "MLBatchExecution1",
"description": "",
"type": "AzureMLBatchExecution",
"linkedServiceName": {
"name": "AzureMLLinkedservice2",
"type": "AzureML"
},
"typeProperties": {
"webServiceInputs": {
"input1": {
"LinkedServiceName":{
"name": "azureblobstoragelinkedservice",
"type": "AzureStorage"
},
"FilePath":"tutoial/Input/TraiData.csv"
},
"input2": {
"LinkedServiceName":{
"name": "azureblobstoragelinkedservice",
"type": "AzureStorage"
},
"FilePath":"tutoial/Input/TestData.csv"
}
},
"webServiceOutputs": {
"output1": {
"LinkedServiceName":{
"name": "AzureStorageLinkedService2",
"type": "AzureStorage"
},
"FilePath":"tutoial/Output/Output.csv"
}
}
}
}
我已使用以下链接创建链接服务和活动: https ://docs.microsoft.com/en-us/azure/data-factory/transform-data-using-machine-learning
任何人都可以帮忙吗?任何帮助将不胜感激..
谢谢
迪帕克