最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

azure data factory - ADF get blob storage url - Stack Overflow

programmeradmin4浏览0评论

I have an ADF linked service to blob storage.

Is there anyway to get the blob storage linked service's "service endpoint url" inside ADF pipeline?

I can pass the name of the blob storage "LS_BlobStorage" as argument.

something like: @("LS_BlobStorage".serviceendpoint.url)

I have an ADF linked service to blob storage.

Is there anyway to get the blob storage linked service's "service endpoint url" inside ADF pipeline?

I can pass the name of the blob storage "LS_BlobStorage" as argument.

something like: @("LS_BlobStorage".serviceendpoint.url)

Share Improve this question asked Mar 10 at 16:27 developerdeveloper 1,6274 gold badges38 silver badges86 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

Is there anyway to get the blob storage linked service's "service endpoint url" inside ADF pipeline?

There is no direct way to get the blob storage linked service's "service endpoint url" inside ADF but to resolve this you can use workaround of linked service. so, you can pass the service endpoint url at runtime in ADF pipeline.

  • First, you need to create a linked service with linked service parameter:

  • Then inside your Dataset create dataset parameter and add it in linked service parameter:

  • Then create pipeline parameter to pass the service endpoint url :

  • Now pass it to Dataset parameter in source of ADF pipeline:

And you can assess the blob storage linked service's "service endpoint url" inside ADF pipeline using this pipeline parameter.

发布评论

评论列表(0)

  1. 暂无评论