Share via

Receiving error while extracting data from Power BI storing to Blob storage by using Azure solution

Amritha 20 Reputation points
2024-01-25T14:14:51.8166667+00:00

Getting error "Timeout value of 00:10:00 exceeded by function 'Functions.AuditsTimer' (Id: 'f2fa9f08-f1b5-43d1-bf28-acf0b99a7b9f'). Initiating cancellation." while running the function

Azure Functions
Azure Functions

An Azure service that provides an event-driven serverless compute platform.


Answer accepted by question author

MayankBargali-MSFT 71,016 Reputation points Moderator
2024-01-29T10:48:00.73+00:00

@Amritha Thanks for reaching out.

It is always great to share more details on what azure service you are using and more details on your flow so it would be easier for anyone to assist you.

As per the error I am assuming that you are using the Azure function app in consumption SKU and you are getting the timeout error in your function app.

Azure Functions in the Consumption plan have a default timeout of 5 minutes and an upper limit of 10 minutes. If you need a longer timeout, you need to switch to a different plan, such as the Premium plan, which provides longer timeouts and dedicated resources. For more details, please refer to this document.

Either you can move to premium plan or leverage Durable Functions which is an extension of Azure Functions that allows you to write long-running workflows in a serverless environment. With Durable Functions, you can break up a long-running task into smaller, more manageable pieces, and use checkpoints to ensure that progress is saved even if the function is interrupted.

For more details on the Durable function please refer to this.

Was this answer helpful?

0 comments No comments

0 additional answers

Sort by: Most helpful

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.