the specified network name is no longer available. Facing Error in ADF pipeline

Balwant Singh 55 Reputation points
2024-10-11T17:23:37.6866667+00:00

I am having this error in my ADF pipeline, My SHIR VM showing the logs that data factory endpoint is not getting resolved. Please look into this and i want to troubleshoot this i have confused if everything looks and run fine, how can i get this error agaian and again.

Azure Data Factory
Azure Data Factory
An Azure service for ingesting, preparing, and transforming data at scale.
{count} votes

1 answer

Sort by: Most helpful
  1. Amira Bedhiafi 41,111 Reputation points Volunteer Moderator
    2024-10-11T21:41:58.28+00:00

    You can start with this old thread : https://learn.microsoft.com/en-us/answers/questions/336122/azure-data-factory-azure-sql-connectivity-error-a

    The message that you are getting often indicates an intermittent or unresolved network connectivity issue between your SHIR VM and ADF.

    Verify that your SHIR VM can resolve the Data Factory endpoint. You can test DNS resolution by running:

    nslookup <data-factory-endpoint>
    

    or

    ping <data-factory-endpoint>
    
    

    Make sure that no firewall, NSG, or other security measures are blocking outbound traffic from your SHIR VM to ADF. Specifically, the SHIR VM needs access to:

    • Port 443 (for HTTPS traffic)
    • Azure Data Factory’s public IP range and service endpoints.

    You can check the logs on the SHIR VM. Navigate to the SHIR installation directory (usually C:\Program Files\Microsoft Integration Runtime\4.x\Shared\Log) and review the logs for detailed error messages that might indicate connectivity issues or other failures.

    One last thing, if your SHIR encounters intermittent network issues, you can implement retry policies in your ADF activities (e.g., copy activities) to automatically retry in case of failure.


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.