0

我正在 Azure 数据工厂中创建一个自定义活动管道,作为其中的一部分,我需要使用下面的 JSON 创建一个 AzureBatchLinkedService:

{
    "name": "AzureBatchLinkedService",
    "properties": {
        "hubName": "name_hub",
        "type": "AzureBatch",
        "typeProperties": {
            "accountName": "accountname",
            "accessKey": "**********",
            "poolName": "?????????",
            "batchUri": "https://northeurope.batch.azure.com",
            "linkedServiceName": "AzureStorageLinkedService"
        }
    }
}

当我第一次创建它时,我不必创建批处理池。它是自动为我创建的 在此处输入图像描述

我的问题是如何让 Azure 为我创建这个“池”?如果我进入批处理帐户并单击“添加+”以手动添加池,它具有所有这些配置选项,我不知道为这些字段中的任何一个设置什么。

4

0 回答 0