WebForms.LocalReport.SetParameters hangs 小灰灰 2021-11-01 11:50 227阅读 0赞 As per our dump analysis, we found that the page is running / calling one of the STA COM component. So the thread running the page (thread 16) is unloading the AppDomain. On another thread in the process of unloading AppDomain we call GC which is normal. When we call GC, Finalizer thread goes off to clean up RCWs. It’s attempting to clean them up and it needs to switch to an STA thread. The STA thread it’s trying to switch to is thread 16 - the one that’s running the page. That thread is in a wait state, waiting for AppDomain unload to finish, so we’re essentially in a deadlock. The problem here is that thread 16 got switched to STA (from MTA) most likely by calling CoInitialize/CoUnInitialize by a COM component (we don’t know which one but it requies STA). CLR went into a regular wait state on it, since it wasn’t aware of this and it still thinks the thread is an MTA thread and this wait state doesn’t allow for anyone to switch to that thread while waiting.. (it doesn’t pump messages). Action Plan: We have to add an attribute AspCompat="true" in the page directive and test whether the issue still comes up. 转载于:https://www.cnblogs.com/jmax/archive/2012/05/02/2478959.html
相关 Oracle 监听hang住 1.数据库正常启动: \[oracle@db ~\]$ sqlplus / as sysdba SQL\Plus: Release 11.2.0.4.0 Productio 蔚落/ 2023年08月17日 16:14/ 0 赞/ 114 阅读
相关 MySQL客户端连接登入hang住原因分析 作者:八怪(高鹏) 中亦科技数据库专家 原文:https://www.jianshu.com/p/93b69955344b 一、问题来源 问题来自一位朋友,如下 红太狼/ 2022年12月28日 14:29/ 0 赞/ 169 阅读
相关 数据库hang等待链分析利器 Oracle有时会出现hang住的现象,原因可能很多,例如资源争用,如果需要知道为什么出现hang,可以分析等待链,而使用hanganalyze是其中一种方式,今天尝试一下。 以你之姓@/ 2022年10月17日 05:30/ 0 赞/ 163 阅读
相关 MySQL所有操作hang住问题的故障排查 1. 系统环境 CentOS release 6.7 mysql社区版MySQL-5.5.24(源码编译安装) 2. 故障简述 首先收到故障告警,所 淡淡的烟草味﹌/ 2022年09月30日 10:55/ 0 赞/ 328 阅读
相关 ogg ddl marker_setup.sql hang住问题 使用系统用户登录执行marker\_setup.sql oracle会出现hang住不动 \[ [oracle@n3][oracle_n3] ~\]$ cd /o ╰+哭是因爲堅強的太久メ/ 2022年09月23日 08:08/ 0 赞/ 141 阅读
相关 datastage作业hang住 最近生产上经常有ds作业hang住,杀掉进程重做后偶尔成功,偶尔不成功,报错信息如下 main_program: (aptoci.C:500). Message: O 快来打我*/ 2022年06月10日 08:42/ 0 赞/ 177 阅读
相关 利用sys schema解决一次诡异的语句hang问题 一、故事背景 在开始之前,先列出数据库的运行环境信息 操作系统:redhat 7.2 x8\_64 文件系统:xfs 数据库版本:MySQL 5.7.17 主机配置: 古城微笑少年丶/ 2022年06月07日 06:43/ 0 赞/ 179 阅读
相关 Maven - Error Releasing Code to GitHub (Hangs After Push) 原文:http://stackoverflow.com/questions/3243755/maven-error-releasing-code-to-github-hangs ╰半夏微凉°/ 2022年04月03日 12:48/ 0 赞/ 130 阅读
相关 WebForms.LocalReport.SetParameters hangs As per our dump analysis, we found that the page is running / calling one of the STA COM 小灰灰/ 2021年11月01日 11:50/ 0 赞/ 228 阅读
还没有评论,来说两句吧...