Azure数据工厂最佳实践之Self-hosted Integration Run小坑
Posted 臭臭粑粑
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Azure数据工厂最佳实践之Self-hosted Integration Run小坑相关的知识,希望对你有一定的参考价值。
©著作权归作者所有:来自51CTO博客作者臭臭粑粑的原创作品,如需转载,请注明出处,否则将追究法律责任
今天分享一下有关Azure Data Factory Self-hosted Integration Runtime的一些小tips。
先看一下Self-hosted Integration Runtime的位置,下面这个架构图很有代表性,很容易理解。
关于如何创建Self-Hosted Integration Runtime有Azure官方文档,这个文档写的就比较好,我就不重复了,如有需要请移步:
https://docs.microsoft.com/en-us/azure/data-factory/create-self-hosted-integration-runtime?tabs=data-factory#create-a-self-hosted-ir-via-ui
这次主要说的是关于在你的Self-Hosted Integration Runtime的公司服务器上到Azure中间有代理服务器,那防火墙规则需要开哪些端口。
对于Azure海外版,以下目的地址和端口要开防火墙:
Destination | Port | Comments |
*.servicebus.windows.net | 443 | 必须的 Required by the self-hosted integration runtime for interactive authoring. |
{datafactory}.{region}.datafactory.azure.net | 443 | 必须的 For new created Data Factory in public cloud, please find the FQDN from your Self-hosted Integration Runtime key which is in format {datafactory}.{region}.datafactory.azure.net. |
download.microsoft.com | 443 | 可选。用来自动更新Self-Hosted Integration Runtime的。看你喜好了。 |
Key Vault URL | 443 | 如果你把密码等敏感信息放在了Key Vault里,那这个就是必须的。如果没有用到Key Vault服务,那这个可以忽略。 |
对于Azure中国版,以下目的地址和端口要开防火墙:
Destination | Port | Comments |
*.servicebus.chinacloudapi.cn | 443 | 必须的 Required by the self-hosted integration runtime for interactive authoring. |
{datafactory}.{region}.datafactory.azure.cn | 443 | 必须的 For new created Data Factory in public cloud, please find the FQDN from your Self-hosted Integration Runtime key which is in format {datafactory}.{region}.datafactory.azure.net. |
download.microsoft.com | 443 | 可选。用来自动更新Self-Hosted Integration Runtime的。看你喜好了。 |
Key Vault URL | 443 | 如果你把密码等敏感信息放在了Key Vault里,那这个就是必须的。如果没有用到Key Vault服务,那这个可以忽略。 |
================》重点来了《===============
{datafactory}.{region}.datafactory.azure.cn这个host信息在哪里找呢?
看下面两张图:
好了,本次分享就到这里。欢迎关注下面微信公众号,发现更多知识!
©著作权归作者所有:来自51CTO博客作者臭臭粑粑的原创作品,如需转载,请注明出处,否则将追究法律责任
以上是关于Azure数据工厂最佳实践之Self-hosted Integration Run小坑的主要内容,如果未能解决你的问题,请参考以下文章
基于 Azure DW 或 Azure SQL 的仪表板报告的最佳实践?
Azure Functions 中的 HttpClient 最佳实践