问题描述
我已经阅读了了解无服务器冷启动|Azure 应用服务团队博客文章.评论之一说您也可以通过每隔 4 分钟从 Azure 逻辑应用程序调用函数来避免消费计划中的冷启动.
I already read Understanding Serverless Cold Start | Azure App Service Team Blog article. One the the comments said You can avoid cold start in consumption plan also by calling function from Azure Logic app in every 4 mins interval.
我试图每 4 分钟向我的应用程序的一项功能发出 1 个请求,但这并不总是有效.它有时仍然冷启动.我知道这是一个黑客.有没有什么更好的方法可以保证App在使用Consumption plan时一直运行?
I was trying to make 1 request per 4 minutes to one function of my app but this doesn’t always works. It sometimes still cold start. I know it's a hack. Is there any better way to ensure App always running when using Consumption plan?
推荐答案
我试图在我的文章 Azure Functions 中超过第一个请求的冷启动.
简而言之,似乎没有办法完全避免冷启动.保持活动调用将使给定实例的生命周期更长,但不会无限期地延长.
In short, there doesn't seem to be a way to avoid cold starts completely. Keep alive calls will make the life span of a given instance longer, but it won't make it indefinitely long.
就目前而言,冷启动似乎是 FaaS 实施的真正问题,它们会随着时间的推移得到优化,但您可能无法将其减少到 0.
For now, Cold Starts seem to be a genuine issues of FaaS implementations, they get optimized over time, but probably you won't be able to reduce them to 0.
这篇关于当每 4 分钟发送一次保持活动请求时,Azure Functions 在消耗计划中仍然“冷启动"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!