首页 > 解决方案 > Azure 数据工厂 V2 中的“值不能为空。\r\n参数名称:端点”

问题描述

在 ADF V2 中执行 Azure ML Batch Execution Activity 时出现以下错误。

ML 批处理执行活动中的错误

我在 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

任何人都可以帮忙吗?任何帮助将不胜感激..

谢谢

迪帕克

标签: azure-data-factory-2

解决方案


触发管道时尝试传递参数。您收到的错误是因为它强制执行参数。


推荐阅读