【发布时间】:2018-01-16 21:41:46
【问题描述】:
我正在使用索引器在 Azure 索引中加载数据。我想使用本地数据库复制 azure index 中的数据。我不想使用 ADF。
Here 我发现我需要允许 azure search IP 连接到本地数据库。但是不知道怎么配置?
【问题讨论】:
标签: azure azure-data-factory azure-cognitive-search indexer
我正在使用索引器在 Azure 索引中加载数据。我想使用本地数据库复制 azure index 中的数据。我不想使用 ADF。
Here 我发现我需要允许 azure search IP 连接到本地数据库。但是不知道怎么配置?
【问题讨论】:
标签: azure azure-data-factory azure-cognitive-search indexer
不建议这样做。来自Azure SQL indexer FAQ:
问:我可以将 Azure SQL 索引器与在本地运行的 SQL 数据库一起使用吗?
不直接。我们不推荐也不支持直接连接,因为 这样做需要您向 Internet 流量开放您的数据库。 客户已使用桥接技术成功实现了此场景 比如 Azure 数据工厂。如需更多信息,请参阅Push data to an Azure Search index using Azure Data Factory。
我们很想知道您为什么不能/不想使用 ADF。请将您的反馈发送到通常 Microsoft 域中的 eugenesh。
如果您仍想设置直接连接,请关注Configure a connection from an Azure Search indexer to SQL Server on an Azure VM。特别是在 IP 地址上:
限制访问搜索服务IP地址我们强烈推荐 您限制对搜索服务 IP 地址的访问 在 ACL 中,而不是让您的 SQL Azure VM 对任何 连接请求。您可以通过 ping 轻松找到 IP 地址 FQDN(例如,your-search-service-name.search.windows.net) 您的搜索服务。
【讨论】: