Error code 11408: The operation has timed out. Id. de actividad

Juan Esteban Mahecha Trujillo 20 Reputation points
2025-05-14T14:47:58.8666667+00:00

Hello, I am starting with Azure Synapse, and when I want to ingest data with a copy, when I configure the connection to the data source (In this case, it is HTTP with a URL), I get this error, and I don't know why. I have configured the storage account with the IPs that have permissions, and I have also configured the IPs that have access in my Synapse resource. Additionally, I have enabled the managed virtual network with Data exfiltration protection enabled. I believe this should be related to that, but I don't know what extra configuration I need to do to allow this type of connections and others. I haven't found information regarding this error code, I would greatly appreciate any help.

Azure Synapse Analytics
Azure Synapse Analytics
An Azure analytics service that brings together data integration, enterprise data warehousing, and big data analytics. Previously known as Azure SQL Data Warehouse.
5,360 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Venkat Reddy Navari 2,555 Reputation points Microsoft External Staff Moderator
    2025-05-14T15:28:18.96+00:00

    Hi @Juan Esteban Mahecha Trujillo The error you're seeing -Error code 11408: The operation has timed out -usually indicates a network connectivity issue between Synapse and the external HTTP data source. Based on your description, it's very likely related to the managed virtual network and Data Exfiltration Protection settings.

    When Data Exfiltration Protection is enabled in a Synapse managed virtual network, outbound traffic to external HTTP endpoints is blocked by default for security. This means that trying to connect to a public HTTP URL will time out unless that domain is explicitly allowed.

    How to Fix It

    To allow access to your HTTP endpoint:

    1. Go to your Synapse workspace in the Azure Portal.
    2. Navigate to Networking > Managed virtual network settings.
    3. Find the section labeled Allowed FQDNs (Fully Qualified Domain Names).
    4. Add the domain name from your HTTP URL (for example, api.example.com).
    5. Click Save and Publish your changes.

    IP allowlisting won’t apply in this case since the traffic is originating from a managed virtual network using internal Azure infrastructure. Instead, allowlisting the domain is the recommended and supported approach.

    • Test your HTTP URL outside of Synapse (e.g., in a browser or with curl) to confirm it's reachable.
    • Make sure your HTTP service allows requests from Azure.
    • Review the Azure Synapse HTTP connector documentation to confirm your setup aligns with supported configurations.

    If you’ve already done all this and the error persists, it may be worth checking DNS resolution or using a Managed Private Endpoint, if your HTTP source supports Azure Private Link.


    I hope this information helps. Please do let us know if you have any further queries.

    Kindly consider upvoting the comment if the information provided is helpful. This can assist other community members in resolving similar issues.

    1 person found this answer helpful.

Your answer

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