Ashok Reddy
Ashok Reddy

Reputation: 1

How to Run Azure Function into running longer than 10 minutes

How to Run Azure Function into running longer than 10 minutes?

My task is parsing csv file and storing data into database tables hardly it will take one hour time. But Azure function apps max timeout is 10 minutes.

Upvotes: 0

Views: 1441

Answers (2)

user793891
user793891

Reputation:

If you run your Function in an App Service plan instead of a Consumption plan, the default timeout is 30 minutes with no overall limit.

Here's a link to the doc

Upvotes: 1

Jarnstrom
Jarnstrom

Reputation: 477

Functions is not designed to run that long , check out this Data Lake example/tutorial to copy csv to sql DB

https://medium.com/@adilsonbna/using-azure-data-lake-to-copy-data-from-csv-file-to-a-sql-database-712c243db658

You use the Copy Data tool to create a pipeline that copies data from CSV file data to a SQL database.

Upvotes: 0

Related Questions