Reputation: 1
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
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.
Upvotes: 1
Reputation: 477
Functions is not designed to run that long , check out this Data Lake example/tutorial to copy csv to sql DB
You use the Copy Data tool to create a pipeline that copies data from CSV file data to a SQL database.
Upvotes: 0