System.Threading.Tasks.Task 引起的 IIS 应用池崩溃
接口服务运行一段时间后,IIS应用池就会突然挂掉,事件查看日志,会有事件日志Event ID为5011的错误
最后直接程序池直接被禁用
查看管理事件
Application Error
错误模块名称: KERNELBASE.dll,版本:
6.1.7601.17514,时间戳: 0x4ce7bafa
异常代码: 0xe0434352 错误偏移量: 0x0000b727 错误进程 ID: 0xc1c 错误应用程序启动时间: 0x01d045ca298f9b3c 错误应用程序路径: C:\Windows\SysWOW64\inetsrv\w3wp.exe 错误模块路径: C:\Windows\syswow64\KERNELBASE.dll 报告 ID: eb60afd0-b1bd-11e4-9f2d-005056a934bb
.NET Runtime
Description: The process was terminated due to an unhandled exception.
Exception Info: System.AggregateException
Stack:
at System.Threading.Tasks.TaskExceptionHolder.Finalize()
初步排查代码确定有可能的几点
1.项目中使用了dapper ,使用了using,跟踪了源码发现已经有对连接池的处理
int flagNum = new SqlConnection(DBSetting.XXX).Execute("SPS_BookForApp", param, commandType: CommandType.StoredProcedure);
2.由之前的委托异步改为基于任务Task的异步
Func<string, string> func = f => { if (!string.IsNullOrEmpty(orderNo) &&orderNo.IsPositiveInt()) { //记录订单量 } else { return string.Empty; } }; func.BeginInvoke("Logging Order Data", ir => { var ar = (AsyncResult)ir; var fun = (Func<string, string>)ar.AsyncDelegate; string returnValue = fun.EndInvoke(ir); if (!string.IsNullOrEmpty(returnValue)) { //判断是否记录成功 } }, null);
改为
Task.Factory.StartNew(() => { // })
没有去捕获异常,想起之前看过的dudu说过这样的问题 ,于是修改了下
var task = Task.Factory.StartNew(() => { throw new MyCustomException("Task1 faulted."); }) .ContinueWith((t) => { Console.WriteLine("I have observed a {0}", t.Exception.InnerException.GetType().Name); }, TaskContinuationOptions.OnlyOnFaulted);
现运行良好。
Refer:
Exception Handling (Task Parallel Library)
https://msdn.microsoft.com/en-us/library/dd997415.aspx
http://www.cnblogs.com/dudu/archive/2012/04/05/task_unhandled_exception_application_crash.html
Exception Handling with the Task Parallel Library
http://www.ademiller.com/blogs/tech/2010/10/exception-handling-with-the-task-parallel-library/
Exception while running system threading tasks task
http://stackoverflow.com/questions/15804059/exception-while-running-system-threading-tasks-task
http://stackoverflow.com/questions/7883052/a-tasks-exceptions-were-not-observed-either-by-waiting-on-the-task-or-accessi/7883083
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· .NET周刊【3月第1期 2025-03-02】
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· [AI/GPT/综述] AI Agent的设计模式综述