《GreenPlum/Postgres系列》表锁处理

《GreenPlum/Postgres系列》表锁处理_第1张图片

GreenPlum/PostGreSQL表锁处理

数据库中遇到表锁的情况,可以通过select * from pg_stat_activity;查看表锁的进程及进程ID,从而取消进程,解锁。

一、模拟表锁

1.1 模拟表数据

创建lock_test表,并随意插入一条数据,用于后续模拟表锁使用。

postgres=# create table lock_test(id int , name text );
CREATE TABLE
postgres=# insert into lock_test values(1,'zxy');
INSERT 0 1

1.2 会话A:

在数据库可视化工具中,一般会自动提交事务。这里通过在服务端打开会话,通过begin和commit命令,开始事务和提交事务。

为模拟锁操作,这里开始了事务,并模拟插入一条数据,不提交。

postgres=# begin;
BEGIN
postgres=# insert into lock_test values(2,'zzz');
INSERT 0 1
postgres=# select * from lock_test;
 id | name
----+------
  1 | zxy
  2 | zzz
(2 rows)

1.3 会话B:

打开一个新的会话,通过查看表数据可知,会话A未提交的事务操作(插入一条新的数据),在这里查看不到。

postgres=# select * from lock_test;
 id | name
----+------
  1 | zxy
(1 row)

二、查看锁进程

为方便查看查询结果,通过可视化工具执行select * form pg_stat_activity;命令来查看锁进程。

《GreenPlum/Postgres系列》表锁处理_第2张图片

通过查看state字段下数据,发现进程pid = 23584的进程处于idle in transaction状态,这个就是我们未提交的事务,也就是会话A执行的内容。

《GreenPlum/Postgres系列》表锁处理_第3张图片

三、处理表锁:

3.1 中断session

# 取消后台操作,回滚未提交事务
select pg_cancel_backend(pid);

# 中断session,回滚未提交事务
select pg_terminate_backend(pid);

《GreenPlum/Postgres系列》表锁处理_第4张图片

执行pg_terminate_backend后,我们回到会话A,发现再去查询表数据的时候,会提示你,该会话已经被管理员关闭。自此已经解决了锁问题。

3.2 会话A:

postgres=# select * from lock_test;
FATAL:  terminating connection due to administrator command
server closed the connection unexpectedly
        This probably means the server terminated abnormally
        before or while processing the request.
The connection to the server was lost. Attempting reset: Succeeded.

你可能感兴趣的:(Greenplum,postgresql,数据库,oracle)