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)
1 Answer
Reset to default 1Is 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.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744835092a4596213.html
评论列表(0条)