Nginx + PHP mysql_pconnect = Database errors (Too many connections)

这里说了mysql中的connect和pconnect的东东

If you’re using NGinx spawn-cgi or FPM with PHP and calling mysql_pconnect, you are likely going to experience frequent database crashes and “Too many connections” errors.

This took a while to trace, but once you understand the issue, it all makes sense.

mysql_pconnect  opens a “persistent” connection to the database. From the  documentation: “the connection to the SQL server will not be closed when  the execution of the script ends. Instead, the link will remain open  for future use (mysql_close() will not close links established by mysql_pconnect()).”

The issue is that FPM keeps a number of php-cgi processes running in the background to process php scripts. These php-cgi processes never die and so MySQL connections keep open forever…

Sooner or later, you are going to run out of MySQL connections (or  worse yet – run out of file descriptors) and that’s when all hell breaks  loose.

And if that’s not enough, after doing some digging into  mysql_pconnect I found a few additional reasons NOT to use  mysql_pconnect:

1. If you use mysql_pconnect on a machine that has a local database  and you are connecting to a remote database, PHP will try to use the  same mysql connection for both databases.

2. Temporary tables don’t work with persistent connections (they are  only visible to the connection that was used to open the table)

3. Setting charset variables on a persistent connection, is going to impact all future queries on that connection as well

4. Calling mysql_pconnect twice (in the same script) with different parameters doesn’t work as expected

5. PHP 4.1 on Apache running with MySQL persistent connections, is known to memory leak (not flushing properly).

Bottom line, never ever use mysql_pconnect.

Replace all occurrences of mysql_pconnect with mysql_connect in your  code and in your php.ini file, prevent persistent connections:

1
2
3
[MySQL] ; Allow or prevent persistent links. mysql.allow_persistent = Off

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值