skip to Main Content

I have a azure batch account with only selected network option enabled. So how do i connect to this batch account from my azure data factory? Through private link? if so how do i do this because i am not finding a managed private endpoint option for batch service in ADF

2

Answers


  1. This is currently not supported by ADF. You can create an idea for it here: https://feedback.azure.com/d365community/forum/1219ec2d-6c26-ec11-b6e6-000d3a4f032c

    Login or Signup to reply.
  2. Another solution would be to use a self hosted integration runtime as seen in this video (I am not affiliated in any way with that video, I just found it while searching solutions to connect to private resources from ADF)

    So create a private endpoint for your batch account and create a Self Hosted IR for your ADF in a Vnet that can access the private endpoint and this will allow your ADF to communicate with the Batch Account.

    Unfortunately the Self Hosted IR can only be installed in windows machines and it requires relatively high resources (4 cpu / 8 ram) so a VM to host it would be costly.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search