天天看点

Azure数据工厂最佳实践之Self-hosted Integration Run小坑

©著作权归作者所有:来自51CTO博客作者臭臭粑粑的原创作品,如需转载,请注明出处,否则将追究法律责任

今天分享一下有关Azure Data Factory Self-hosted Integration Runtime的一些小tips。

先看一下Self-hosted Integration Runtime的位置,下面这个架构图很有代表性,很容易理解。

Azure数据工厂最佳实践之Self-hosted Integration Run小坑

关于如何创建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数据工厂最佳实践之Self-hosted Integration Run小坑

对于Azure海外版,以下目的地址和端口要开防火墙: 

<col>

Destination

Port

Comments

*.servicebus.windows.net

443

必须的

Required by the self-hosted integration runtime for interactive authoring.

{datafactory}.{region}.datafactory.azure.net

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

可选。用来自动更新Self-Hosted Integration Runtime的。看你喜好了。

Key Vault URL

如果你把密码等敏感信息放在了Key Vault里,那这个就是必须的。如果没有用到Key Vault服务,那这个可以忽略。

​<code>​对于Azure中国版,以下目的地址和端口要开防火墙: ​</code>​

​<code>​ ​</code>​

*.servicebus.chinacloudapi.cn

{datafactory}.{region}.datafactory.azure.cn

================》重点来了《===============

{datafactory}.{region}.datafactory.azure.cn这个host信息在哪里找呢?

看下面两张图:

Azure数据工厂最佳实践之Self-hosted Integration Run小坑
Azure数据工厂最佳实践之Self-hosted Integration Run小坑

好了,本次分享就到这里。欢迎关注下面微信公众号,发现更多知识!

Azure数据工厂最佳实践之Self-hosted Integration Run小坑

继续阅读