Kenny_I
Kenny_I

Reputation: 2513

Azure Functions error - establishing connection failed

I have Azure Data Factory, which calls Azure Durable Functions. I had success working connection until Terraform did some unknown changes.

Where the issue could be?

Error in Azure Data Factory: An error occured while sending the request. Unable to connect to the remote server. A connection attempt failed because the connected party did not properly respond after a period of time, or establishing connection failed because connected host has failed to response xx.xx.xx.xx:xxx.

Upvotes: 0

Views: 3189

Answers (1)

anon
anon

Reputation:

Error in Azure Data Factory: An error occured while sending the request. Unable to connect to the remote server. A connection attempt failed because the connected party did not properly respond after a period of time, or establishing connection failed because connected host has failed to response xx.xx.xx.xx:xxx.

I believe this error occurs due to firewall issues like some blocking rules didn't allow it to reach out to the data source. Please try using the following steps:

  • Allow access from all networks under Firewalls and Virtual Networks of the storage account.
  • As mentioned in the Azure Data Factory Security and access control troubleshooting guide, there are 2 cause like public endpoint in Managed VNet is not reliable to Azure Blob Storage and the other is Azure Blob Storage, Data Lake Gen2 are not supported through public endpoint connection from the Managed VNet Service. Please check the troubleshooting guide for the few workarounds given by Microsoft for this kind of error.

Upvotes: 0

Related Questions