Re: supervise multiple workers

2015-09-28 Thread Alexander Zubkov
I have thaught about that too, but I was wondering if there is more simple and plain solutions. :) On 28.09.2015 07:50, Colin Booth wrote: On Sep 27, 2015 6:47 PM, "Laurent Bercot" wrote: IIUC this time, what you're mentioning here is instanced supervision.

Re: supervise multiple workers

2015-09-27 Thread Laurent Bercot
On 28/09/2015 00:40, Alexander Zubkov wrote: is I need a tool, to which I will pass number of workers I need and program, then it will spawn given number of identical programs and will keep them alive? I tried to google something, but may be I used bad keywords? I think "preforking server" is

Re: supervise multiple workers

2015-09-27 Thread Alexander Zubkov
Prefork is not exactly the same I think. In this architecture program ends after finishing task. And it also commonly includes many other stuff like passing of "tasks" to workers. So googling it gives many irrelevant links for me. Now I'm interested just in something that is supervising not one

Re: supervise multiple workers

2015-09-27 Thread Laurent Bercot
On 28/09/2015 01:12, Alexander Zubkov wrote: Now I'm interested just in something that is supervising not one process, but N similar (started with the same command) processes. Ah, sorry, I misunderstood - it sounded like you wanted a superserver, but with preforked children. IIUC this time,