ShadowIllusion Posted July 24, 2012 Report Share Posted July 24, 2012 OS I have tried: Windows 7 SP1 and Windows Server 2008 R2 (both is 64-bit OS)... Uniserver version I have tried: 8.5.8-Coral and 8.5.5-Coral How to reproduce this problem:1. Download Uniserver 8.5.5-Coral and extract it. Run apache and mysql as usual. 2. Download Process Explorer http://download.sysinternals.com/files/ProcessExplorer.zip and extract it. 3. Run Process Explorer as Administrator, then View > Select Columns. In "Process Performance" tab, tick "Handle Count" > OK. After this, click View > Lower Pane View > tick "Handle"... 4. Click on httpd1.exe child processes which have around 300 handle count at startup... The lower pane will show the handle list... 5. Open your favorite browser, and go to http://127.0.0.1 Everytime you press refresh (F5) on your browser (re-request the webserver), you will notice that httpd1.exe have 1 more handle count in Process Explorer window... In the lower pane view, you will notice that 1 new security token handle is created with the name format like this: YOURCOMPUTERNAME\YOURUSERNAME:RANDOMTOKEN This is where the problem happened. Everytime httpd1.exe server new web request, the handle is created, but NEVER closed, and will hogging system resources over time. It's okay on test server, but once you put it in production server with real websites running, the opened Handle Count of httpd1.exe will increase to a very high number... In my server, it goes from 300 (at startup) to 1 million opened handle only in 2 days! Other process only consumes around 10 ~ 2000 handles. httpd1.exe memory consumption still remains around 20mb, but because handle consumes kernel space, your ram usage will increase around +512mb mysteriously for every 1 million handle... In only two weeks, my server experience some slowdowns / freeze because too much handle for Windows to hold... I need to restart Uniserver Apache service every few days so the handle count reset back to around 300 after restart (and it will goes up quickly again everytime the world accessing my websites)... If you want to mimic the behaviour of production server, after accessing http://127.0.0.1 try to hold down F5 buttons for 1 minutes... See how is the handle count now... It only happened since I upgrade to 8.5.5-Coral (I'm sorry I forget the version before this which doesn't have this leak issues)... Maybe it's the problem on Apache or PHP compilation... Quote Link to comment Share on other sites More sharing options...
John Smith Posted July 24, 2012 Report Share Posted July 24, 2012 To add something to the empirical data: I just tried 8.5.7-Coral on Windows Server 2008 32-Bit and the problem did not occur for me. After torturing the F5 button for a minute, I could see the handle count went up about 100 and then stayed there no matter how often I refreshed. Quote Link to comment Share on other sites More sharing options...
ShadowIllusion Posted July 25, 2012 Author Report Share Posted July 25, 2012 Thanks for the info. Have you tried on 64-bit systems? Quote Link to comment Share on other sites More sharing options...
Crypton Posted July 25, 2012 Report Share Posted July 25, 2012 I confirm this issue on Windows 7 SP1 x64. Not only tokens, but also threads! There are about ~200 threads created! Most of them are in suspended state. This must be also leak, no application need so many threads as 8 threads is enough for ordinary thread pool. One thread takes 2MB of RAM (for the stack), so it's like ~400MB leak! Or not? Have to restart my server periodically... Quote Link to comment Share on other sites More sharing options...
ShadowIllusion Posted July 25, 2012 Author Report Share Posted July 25, 2012 I wonder why if I refresh the default uniserver index.php, it leaks handle, while if change it with static index.html, it doesn't leak... So I try open default uniserver index.php, commenting some function, then test refresh again... Turns out that is_readable() function in line 7 of index.php was the culprit... Try this simple script, save as index.php <?phpif (is_readable("index.php"))?> ^it will leak handles each time this is executed. but if you change value index.php to something else (so file doesnt exist and is_readable() return false), it will not leak handles... this is php bugs... Quote Link to comment Share on other sites More sharing options...
ShadowIllusion Posted July 25, 2012 Author Report Share Posted July 25, 2012 After browsing through php sites, seems there's already a bug report: https://bugs.php.net/bug.php?id=62444 It seems happened since introduction of php 5.3.0. If you see in the changelogs: http://www.php.net/ChangeLog-5.php Added support for ACL (is_writable, is_readable, reports now correct results) on Windows. (Pierre, Venkat Raman Don, Kanwaljeet Singla) Temporary solution: Revert back to UniServer 5.6a-Nano http://forum.uniformserver.com/index.php?showtopic=1878 because it uses PHP 5.2.13. But the old apache version somehow turns me off because eaccelerator often crashes the apache. New apache seems more stable and consumes less memory. Quote Link to comment Share on other sites More sharing options...
John Smith Posted July 26, 2012 Report Share Posted July 26, 2012 One wonders why this bug has not been fixed yet, since it's such a crucial thing and we are at PHP 5.4.5 already... Quote Link to comment Share on other sites More sharing options...
ShadowIllusion Posted July 26, 2012 Author Report Share Posted July 26, 2012 Because most people use linux on production server, and windows for testing? Quote Link to comment Share on other sites More sharing options...
Ric Posted July 26, 2012 Report Share Posted July 26, 2012 A bug not reported is never going to be fixed then again a reported bug may be ignored. That said perhaps the following two submitted bug reports will be addressed in the next releases of PHP: https://bugs.php.net/bug.php?id=62444https://bugs.php.net/bug.php?id=62669 All the bestRic Quote Link to comment Share on other sites More sharing options...
ShadowIllusion Posted August 20, 2012 Author Report Share Posted August 20, 2012 Can you include PHP 5.4.6/PHP 5.2.13 instead of PHP 5.4.6/PHP 5.3.16 in the 9 beta. That's because 5.2.13 didn't have this bugs, and very suitable for production server. Quote Link to comment Share on other sites More sharing options...
Ric Posted November 22, 2012 Report Share Posted November 22, 2012 Please note the above bug (https://bugs.php.net/bug.php?id=62444)has been resolved. Fixed in PHP releases 5.4.9 and 5.3.19 Coral 8.6.8 - Updated PHP to 5.4.9 All the bestRic Quote Link to comment Share on other sites More sharing options...
BobS Posted November 22, 2012 Report Share Posted November 22, 2012 It looks like these new versions need to be put into the next release of Steel-9 Beta. But I suppose you realize this... Regards,BobS Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.