mysql_pconnect leaks file descriptors on reconnect
| Bug #55473 | mysql_pconnect leaks file descriptors on reconnect | ||||
|---|---|---|---|---|---|
| Submitted: | 2011-08-21 10:52 UTC | Modified: | 2011-08-22 10:57 UTC | ||
| From: | littlesavage at rambler dot ru | Assigned: | andrey (profile) | ||
| Status: | Closed | Package: | MySQL related | ||
| PHP Version: | 5.3.7 | OS: | |||
| Private report: | No | CVE-ID: | None | ||
[2011-08-21 10:52 UTC] littlesavage at rambler dot ru
Description:
------------
Whem Mysql closes created by mysql_pconnect() peristent connection, file descriptor lefts opened and is never reused.
I have a server that stops working due to opened file descriptors limit.
Test script:
---------------
<?php
function connect($passwd) {
$conn = mysql_pconnect('localhost:3306','root', $passwd);
if (!$conn)
die(mysql_error()."\n");
mysql_query("set wait_timeout=5", $conn);
return $conn;
}
$passwd = $argv[1];
$conn = connect($passwd);
for($i=0;$i<10;$i++) {
/* wait while mysql closes connection */
sleep(6);
if (!mysql_ping($conn)) {
echo "reconnect\n";
$conn = connect($passwd);
}
$r = mysql_query('select 1', $conn);
$error = $r ? 'OK' : mysql_error();
$opened_files = trim(exec("lsof -np " . getmypid() . " | wc -l"));
echo "$error. opened files: $opened_files\n";
}
?>
Expected result:
----------------
$ php ./test.php
reconnect
OK. opened files: 76
reconnect
OK. opened files: 76
reconnect
OK. opened files: 76
reconnect
OK. opened files: 76
...
Actual result:
--------------
$ php ./test.php
reconnect
OK. opened files: 76
reconnect
OK. opened files: 77
reconnect
OK. opened files: 78
reconnect
OK. opened files: 79
...
Patches
Bug55473.diff (last revision 2011-08-22 08:33 UTC by laruence@php.net)Pull Requests
History
AllCommentsChangesGit/SVN commits
[2011-08-22 03:05 UTC] laruence@php.net
[2011-08-22 06:20 UTC] littlesavage at rambler dot ru
[2011-08-22 08:35 UTC] laruence@php.net
[2011-08-22 09:01 UTC] laruence@php.net
[2011-08-22 10:57 UTC] laruence@php.net
-Status: Analyzed +Status: Closed -Assigned To: +Assigned To: andrey
[2012-02-28 06:46 UTC] jim at addmired dot com