postgresql 中的一些定义,如下:
pg_cancel_backend
and pg_terminate_backend
send signals (SIGINT or SIGTERM respectively) to backend processes identified by process ID. The process ID of an active backend can be found from the procpid column of the pg_stat_activity view,or by listing the postgres processes on the server (using ps on Unix or the Task Manager on Windows ).
两者都是boolean 类型的,返回为true 或者false 。
pg_cancel_backend 用来取消一个进程
首先通过pg_stat_activity 查出你要取消的进程号
select procpid from pg_stat_activity where ......;
然后,用这个函数来取消
select pg_cancel_backend(procpid); 。
这个函数主要是取消某个进程,但是某个会话并不会因此而被强制退出
在实际场景中经常碰到一些比较复杂的查询,跑了很久跑不出来,使用这个函数也不起作用,去OS 直接kill 也kill 不掉,就只有重启集群了。