标签:style class blog code http tar
在通过pymssql访问SQL Server时,直接在python中运行没有问题,在通过mod_wsgi和Apache进行部署时,发现所有请求都hang再数据库查询。
通过google查到了答案,感谢google,详细描述请见:https://code.google.com/p/modwsgi/wiki/ApplicationIssues#Python_Simplified_GIL_State_API
简要说一下,mod_wsgi针对每个virtual host和app mount point创建一个sub interpreter。python中有个著名的GIL,在通过C extension访问GIL State时,只有第一个sub interpreter才可以正常工作,如果使用后续的sub interpreter会导致死锁或crash,因为pymssql是一个C extension所以会有这个问题,解决方案是,添加配置项:
WSGIApplicationGroup %{GLOBAL}
mod_wsgi + pymssql访问SQL Server阻塞,布布扣,bubuko.com
mod_wsgi + pymssql访问SQL Server阻塞
标签:style class blog code http tar
原文地址:http://blog.csdn.net/chosen0ne/article/details/31367961