admin管理员组

文章数量:1404619

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.

本文标签: azure data factoryADF get blob storage urlStack Overflow