Azure webjob ETIMEDOUT

Shankar Maddila 21 Reputation points
2020-06-22T13:04:26.16+00:00

I am running a webjob, a CSV data processing functionality that takes the id from each row and fetches the related info of that id by SOAP requests. It is dynamically triggered webjob , suddenly stopped by throwing ETIMEDOUT error I tried catching the error and increased the webjob idletime but unable to find a solution. Seems like the issue is with calls to external resource (I am not sure). I have not made any changes in the Azure portal or to the webjob code since long ago .Any help is much appreciated!

[06/11/2020 05:51:54 > abdbcb: INFO] { [Error: connect ETIMEDOUT 130.248.148.130:443]
[06/11/2020 05:51:54 > abdbcb: ERR ] ^
[06/11/2020 05:51:54 > abdbcb: INFO] code: 'ETIMEDOUT',
[06/11/2020 05:51:54 > abdbcb: INFO] errno: 'ETIMEDOUT',

Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
7,728 questions
0 comments No comments
{count} votes

Accepted answer
  1. Ryan Hill 28,101 Reputation points Microsoft Employee
    2020-06-22T21:47:22.107+00:00

    Hi @ShankarMaddila-4431,

    If you're pulling CSV data from 130.248.148.130:443 (which according whois.com is owned by Adobe, your webjob might be timing out waiting for the request to complete. Not sure what API you're calling, but to investigate, I would look into any depenedencies your webjob uses. You can temporarily add application insights to your webjob in order to determine which requests/processes are taking the longest amount of time.

    Let mek know if I can be of further assistance

    1 person found this answer helpful.

0 additional answers

Sort by: Most 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.