vote up 2 vote down star

If I'm using Apache with a pool of worker processes, and one of those launches its own long-running process, what happens to that worker? Will Apache kill it eventually, killing the child process? Will that worker be permanently unavailable, but keep running? How does it differ if it starts a thread instead of a process? How does it differ in various web app deployment scenarios?

flag

1 Answer

vote up 1 vote down

How is the long-running process launched? A cgi? If so the apache worker process will sit and wait for your process to finish, however long it takes, and the it will not serve any more requests. If you stop apache the worker process will be terminated. What happens to your process depends on what it does when it receives the TERM signal.

link|flag
Sorry, should have clarified: the process is forked from the worker. – Brian Oct 29 '08 at 18:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.