Microsoft.WindowsAzure. Storage.StorageException: The client could not finish the operation within specified timeout

sam
sam
Member
378 Points
48 Posts

I'm using Azure Webjob project to execute long running. It's scheduled job and running manually from azure webjob dashboard.

After a specific time it's failing as:

Microsoft.WindowsAzure.Storage.StorageException: 
The client could not finish the operation within specified timeout

I'm looking on it how to resolve it. 

Views: 3167
Total Answered: 1
Total Marked As Answer: 0
Posted On: 15-Nov-2019 08:14

Share:   fb twitter linkedin
Answers
Stevan
Stevan
Member
310 Points
20 Posts
         

Maybe you can try to disabling dashboard logging. For this you need to put following code:

var config = new JobHostConfiguration();
config.DashboardConnectionString = null;

WebJobs SDK stores log blobs to “azure-jobs-host-output” container for each execution of the method. In your scenario maybe the process uses lot of bandwidth and run into timeouts from the SDK trying to save log blobs.

Reference:
https://github.com/Azure/azure-webjobs-sdk/issues/1393

Posted On: 15-Nov-2019 08:31
 Log In to Chat