Qing Zhao <[EMAIL PROTECTED]> writes: > If we do "kill -9 pid" to get rid of the deserted process, it bring > down the PG database server entirely.
It's supposed to. > Is there a way to kill the dead processes/thread without really affect > the PG server? It will time out by itself eventually (order of a couple hours probably --- it depends on your TCP stack). You can try a SIGINT or SIGTERM. SIGINT is safe but may or may not cause the backend to quit. SIGTERM will make it quit, but I'm not prepared to guarantee that SIGTERM won't have bad side effects. I'd suggest waiting... regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 3: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to [EMAIL PROTECTED] so that your message can get through to the mailing list cleanly