in reply to Parallel ForkManager problem: parent dies early before all the child finishes

Yeah, Apache is probably killing-off the parent. In any case, if the operation is "expensive," the web server process ought not be the one who's doing it ... or orchestrating it. Web pages should just be a user-interface. If you have an expensive or long-running thing to do, a batch manager should be doing it, separate from Apache or from anyone else.
  • Comment on Re: Parallel ForkManager problem: parent dies early before all the child finishes