Mod_wsgi + pymssql access to SQL Server blocking

Source: Internet
Author: User

When accessing SQL Server through Pymssql, there was no problem running directly in Python, and when deployed through Mod_wsgi and Apache, all requests were found to hang over the database query.

Through Google to find the answer, thank you Google, detailed description please see: Https://code.google.com/p/modwsgi/wiki/ApplicationIssues#Python_Simplified_GIL_State_API

Briefly, Mod_wsgi creates a sub interpreter for each virtual host and app mount point. There is a famous Gil in Python, when access to the Gil State via C extension, only the first sub interpreter works, and if using subsequent sub interpreter results in deadlocks or crash, Because Pymssql is a C extension so there is this problem, the solution is to add configuration items:

Wsgiapplicationgroup%{global}

Force the app to use the first sub interpreter, which makes the Gil work properly. After the change, mod_wsgi everything OK.


Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.