首页 > 解决方案 > Azure appservices 预热永远持续

问题描述

我正在以相当好的计划在 azure appservices 上运行我的 asp.net C# 应用程序,并且我的应用程序初始化速度非常慢。每次我部署或重新启动应用程序时都会发生这种情况。

起初,我认为我的 global.asax Application_Startup 需要很长时间才能从数据库加载配置。但后来我意识到它甚至需要 20 多分钟才能到达我的 Application_Startup。

我正在寻找有关在哪里寻找问题根本原因的想法。

非常感谢

标签: azureinitializationazure-web-app-serviceapplication-warmup

解决方案


I would suggest to check for Azure Metrics logs to get more details, also one of the best thing which I love to do is remote debugging on Azure app. You can check below post for more details on remote debugging:

Remote debugging Azure App Service


推荐阅读