【发布时间】:2018-08-16 16:40:00
【问题描述】:
我正在尝试将一些数据传输到 Azure 搜索,但由于某种原因它失败并显示 Invalid linked service reference. Name: AzureSearch1
我已经设置了这样的 Azure 搜索链接服务:
{
"name": "AzureSearch1",
"properties": {
"type": "AzureSearch",
"typeProperties": {
"url": "https://xxxxxx.search.windows.net",
"key": {
"type": "AzureKeyVaultSecret",
"store": {
"referenceName": "AzureKeyVault",
"type": "LinkedServiceReference"
},
"secretName": "Search-AdminKey"
}
},
"connectVia": {
"referenceName": "integrationRuntime1",
"type": "IntegrationRuntimeReference"
}
}
}
“测试连接”工作正常。
现在,我正在尝试像这样创建 Azure 搜索索引器:
{
"name": "AzureSearchIndex_PriceSheet",
"properties": {
"linkedServiceName": {
"referenceName": "AzureSearch1",
"type": "LinkedServiceReference"
},
"type": "AzureSearchIndex",
"typeProperties": {
"indexName": "pricesheet"
}
}
}
但是当我单击“预览数据”或“导入架构”时它会失败并出现以下错误:
Invalid linked service reference. Name: AzureSearch1. Activity ID:2fa29fe9-ca5d-4308-af62-xxxxxxxxx
集成管道设置为“西欧”,Azure 搜索也在该地区预配。
有什么想法吗? 谢谢!
【问题讨论】:
标签: azure azure-cognitive-search azure-data-factory-2