Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何让 Azure Function 运行超过 10 分钟?
我的任务是解析 csv 文件并将数据存储到数据库表中,几乎不需要一小时的时间。但 Azure 函数应用程序的最大超时为 10 分钟。
函数不是为运行那么长时间而设计的,请查看此 Data Lake 示例/教程以将 csv 复制到 sql DB
https://medium.com/@adilsonbna/using-azure-data-lake-to-copy-data-from-csv-file-to-a-sql-database-712c243db658
您使用复制数据工具来创建将数据从 CSV 文件数据复制到 SQL 数据库的管道。
如果您在应用服务计划而不是消耗计划中运行函数,则默认超时为 30 分钟,没有总体限制。
这是文档的链接