小编Tan*_*nki的帖子

ADF管道中找不到Azure批量链接服务

我正在尝试使用ARM模板部署ADF管道.以下是azure批量链接服务的代码部分:

{
      "type": "linkedservice",
      "name": "AzureBatchLS",
      "dependsOn": [
        "[variables('dataFactoryName')]"
      ],
      "apiVersion": "2015-10-01",
      "properties": {
        "type": "AzureBatch",
        "typeProperties": {
          "accountName": "<acct name>.eastus2",
          "accessKey": <access key>,
          "poolName": "<pool name>",
          "linkedServiceName": "Dev-LinkedService"
        }
      }
    }
Run Code Online (Sandbox Code Playgroud)

但是,每次在部署期间,我都会收到以下错误消息:

New-AzureRmResourceGroupDeployment : 9:22:08 PM - Resource Microsoft.DataFactory/datafactories/linkedservice '<adf name>/AzureBatch' failed with message '{
"error": {
    "code": "BadRequest",
    "message": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta http-equiv=\"Content-Type\" 
content=\"text/html; charset=iso-8859-1\"/>\r\n<title>404 - File or directory not found.</title>\r\n<style type=\"text/css\">\r\n<!--\r\nbody{margin:0;font-size:.7em;font-family:Verdana, Arial, Helvetica, 
sans-serif;background:#EEEEEE;}\r\nfieldset{padding:0 15px 10px 15px;} \r\nh1{font-size:2.4em;margin:0;color:#FFF;}\r\nh2{font-size:1.7em;margin:0;color:#CC0000;} \r\nh3{font-size:1.2em;margin:10px 0 0 …
Run Code Online (Sandbox Code Playgroud)

azure azure-data-factory azure-rm-template azure-batch

1
推荐指数
1
解决办法
256
查看次数