0

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.

James Z
  • 12,209
  • 10
  • 24
  • 44

2 Answers2

1

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

CSharpRocks
  • 6,791
  • 1
  • 21
  • 27
0

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.

Jarnstrom
  • 467
  • 2
  • 6
  • Hi @Jarnstrom, First thanks for suggesting Azure Data Lake. And I have few doubts. 1)We have CSV files it is source every day we are created a new CSV file. Is it possible add dynamically CSV file into azure data lake.2)based on column value we need to process data is it also possible in data lake, let me know . Thanks in Advance – Ashok Reddy Feb 06 '19 at 04:36