|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2015-04-11 17:18 UTC] laruence@php.net
-Assigned To:
+Assigned To: mike
[2015-04-13 15:04 UTC] mike@php.net
[2017-10-24 06:34 UTC] kalle@php.net
-Status: Assigned
+Status: Open
-Assigned To: mike
+Assigned To:
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 03:00:01 2025 UTC |
Description: ------------ I've been experiencing for a very long time IIS spinning UP hundreds of fast-cgi processes, rendering the server unusable. Today I came across this situation that seems related to IIS spinning up so many instances. In Drupal, thumbnail generation is done on the fly. The Conent-Length headers are sent before sending the file to the client, but if anything fails during this process, the client will remain endlesly connected (waiting for the rest of the response) even if the script has finished or exit() has been called. It looks like the fast-cgi processes are not released until they time out, even if exit() was called. Because IIS thinks these processes are busy, it spins up new processes (depending on the MAX setting in IIS) or makes new requests wait until the locked fast-cgi processes have been freed. I'm not an HTTP protocol expert, but there must be some way for PHP to tell the client that there's nothing else to wait for because the script has already finished execution. Test script: --------------- <?php header('Content-Length: 2838'); // Something went wrong while preparing the output data // so send a 500 and exit header('Status: 503 Service Unavailable'); print 'Custom message'; exit(500); Expected result: ---------------- Expect to see the 'Custom Message' in the browser inmediately, instead of the client timing out and holding the fast-cgi process hostage until it times out.