文章详情

短信预约信息系统项目管理师 报名、考试、查分时间动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

postgresql lock 锁等待查看

2014-11-24 19:41

关注

postgresql lock 锁等待查看

当SQL请求锁等待超过deadlock_timeout指定的时间时,报类似如下日志:

LOG: process xxx1 acquired RowExclusiveLock on relation xxx2 of database xxx3 after xxx4 ms at xxx
STATEMENT: INSERT ...........

解释: xxx1进程请求位于数据库xxx3中的xxx2对象的RowExclusiveLock锁,已等待xxx4秒。

如何检查或监控锁等待呢?

PostgreSQL提供了两个视图

通常锁的排查方法如下

查看锁等待sql

with
t_wait as
(
select a.mode,a.locktype,a.database,a.relation,a.page,a.tuple,a.classid,a.granted,
a.objid,a.objsubid,a.pid,a.virtualtransaction,a.virtualxid,a.transactionid,a.fastpath,
b.state,b.query,b.xact_start,b.query_start,b.usename,b.datname,b.client_addr,b.client_port,b.application_name
from pg_locks a,pg_stat_activity b where a.pid=b.pid and not a.granted
),
t_run as
(
select a.mode,a.locktype,a.database,a.relation,a.page,a.tuple,a.classid,a.granted,
a.objid,a.objsubid,a.pid,a.virtualtransaction,a.virtualxid,a.transactionid,a.fastpath,
b.state,b.query,b.xact_start,b.query_start,b.usename,b.datname,b.client_addr,b.client_port,b.application_name
from pg_locks a,pg_stat_activity b where a.pid=b.pid and a.granted
),
t_overlap as
(
select r.* from t_wait w join t_run r on
(
r.locktype is not distinct from w.locktype and
r.database is not distinct from w.database and
r.relation is not distinct from w.relation and
r.page is not distinct from w.page and
r.tuple is not distinct from w.tuple and
r.virtualxid is not distinct from w.virtualxid and
r.transactionid is not distinct from w.transactionid and
r.classid is not distinct from w.classid and
r.objid is not distinct from w.objid and
r.objsubid is not distinct from w.objsubid and
r.pid <> w.pid
)
),
t_unionall as
(
select r.* from t_overlap r
union all
select w.* from t_wait w
)
select locktype,datname,relation::regclass,page,tuple,virtualxid,transactionid::text,classid::regclass,objid,objsubid,
string_agg(
"Pid: "||case when pid is null then "NULL" else pid::text end||chr(10)||
"Lock_Granted: "||case when granted is null then "NULL" else granted::text end||" , Mode: "||case when mode is null then "NULL" else mode::text end||" , FastPath: "||case when fastpath is null then "NULL" else fastpath::text end||" , VirtualTransaction: "||case when virtualtransaction is null then "NULL" else virtualtransaction::text end||" , Session_State: "||case when state is null then "NULL" else state::text end||chr(10)||
"Username: "||case when usename is null then "NULL" else usename::text end||" , Database: "||case when datname is null then "NULL" else datname::text end||" , Client_Addr: "||case when client_addr is null then "NULL" else client_addr::text end||" , Client_Port: "||case when client_port is null then "NULL" else client_port::text end||" , Application_Name: "||case when application_name is null then "NULL" else application_name::text end||chr(10)||
"Xact_Start: "||case when xact_start is null then "NULL" else xact_start::text end||" , Query_Start: "||case when query_start is null then "NULL" else query_start::text end||" , Xact_Elapse: "||case when (now()-xact_start) is null then "NULL" else (now()-xact_start)::text end||" , Query_Elapse: "||case when (now()-query_start) is null then "NULL" else (now()-query_start)::text end||chr(10)||
"SQL (Current SQL in Transaction): "||chr(10)||
case when query is null then "NULL" else query::text end,
chr(10)||"--------"||chr(10)
order by
( case mode
when "INVALID" then 0
when "AccessShareLock" then 1
when "RowShareLock" then 2
when "RowExclusiveLock" then 3
when "ShareUpdateExclusiveLock" then 4
when "ShareLock" then 5
when "ShareRowExclusiveLock" then 6
when "ExclusiveLock" then 7
when "AccessExclusiveLock" then 8
else 0
end ) desc,
(case when granted then 0 else 1 end)
) as lock_conflict
from t_unionall
group by
locktype,datname,relation,page,tuple,virtualxid,transactionid::text,classid,objid,objsubid;

#如果觉得写SQL麻烦,可以将它创建为视图

create view v_locks_monitor as
with
t_wait as
(
select a.mode,a.locktype,a.database,a.relation,a.page,a.tuple,a.classid,a.granted,
a.objid,a.objsubid,a.pid,a.virtualtransaction,a.virtualxid,a.transactionid,a.fastpath,
b.state,b.query,b.xact_start,b.query_start,b.usename,b.datname,b.client_addr,b.client_port,b.application_name
from pg_locks a,pg_stat_activity b where a.pid=b.pid and not a.granted
),
t_run as
(
select a.mode,a.locktype,a.database,a.relation,a.page,a.tuple,a.classid,a.granted,
a.objid,a.objsubid,a.pid,a.virtualtransaction,a.virtualxid,a.transactionid,a.fastpath,
b.state,b.query,b.xact_start,b.query_start,b.usename,b.datname,b.client_addr,b.client_port,b.application_name
from pg_locks a,pg_stat_activity b where a.pid=b.pid and a.granted
),
t_overlap as
(
select r.* from t_wait w join t_run r on
(
r.locktype is not distinct from w.locktype and
r.database is not distinct from w.database and
r.relation is not distinct from w.relation and
r.page is not distinct from w.page and
r.tuple is not distinct from w.tuple and
r.virtualxid is not distinct from w.virtualxid and
r.transactionid is not distinct from w.transactionid and
r.classid is not distinct from w.classid and
r.objid is not distinct from w.objid and
r.objsubid is not distinct from w.objsubid and
r.pid <> w.pid
)
),
t_unionall as
(
select r.* from t_overlap r
union all
select w.* from t_wait w
)
select locktype,datname,relation::regclass,page,tuple,virtualxid,transactionid::text,classid::regclass,objid,objsubid,
string_agg(
"Pid: "||case when pid is null then "NULL" else pid::text end||chr(10)||
"Lock_Granted: "||case when granted is null then "NULL" else granted::text end||" , Mode: "||case when mode is null then "NULL" else mode::text end||" , FastPath: "||case when fastpath is null then "NULL" else fastpath::text end||" , VirtualTransaction: "||case when virtualtransaction is null then "NULL" else virtualtransaction::text end||" , Session_State: "||case when state is null then "NULL" else state::text end||chr(10)||
"Username: "||case when usename is null then "NULL" else usename::text end||" , Database: "||case when datname is null then "NULL" else datname::text end||" , Client_Addr: "||case when client_addr is null then "NULL" else client_addr::text end||" , Client_Port: "||case when client_port is null then "NULL" else client_port::text end||" , Application_Name: "||case when application_name is null then "NULL" else application_name::text end||chr(10)||
"Xact_Start: "||case when xact_start is null then "NULL" else xact_start::text end||" , Query_Start: "||case when query_start is null then "NULL" else query_start::text end||" , Xact_Elapse: "||case when (now()-xact_start) is null then "NULL" else (now()-xact_start)::text end||" , Query_Elapse: "||case when (now()-query_start) is null then "NULL" else (now()-query_start)::text end||chr(10)||
"SQL (Current SQL in Transaction): "||chr(10)||
case when query is null then "NULL" else query::text end,
chr(10)||"--------"||chr(10)
order by
( case mode
when "INVALID" then 0
when "AccessShareLock" then 1
when "RowShareLock" then 2
when "RowExclusiveLock" then 3
when "ShareUpdateExclusiveLock" then 4
when "ShareLock" then 5
when "ShareRowExclusiveLock" then 6
when "ExclusiveLock" then 7
when "AccessExclusiveLock" then 8
else 0
end ) desc,
(case when granted then 0 else 1 end)
) as lock_conflict
from t_unionall
group by
locktype,datname,relation,page,tuple,virtualxid,transactionid::text,classid,objid,objsubid ;

#eg:

create table table_lock(id int primary key, info text);
insert into table_lock values (1,"a");
#session A
begin;
update table_lock set info="aa" where id=1;
select * from table_lock;
#session B
begin;
select * from table_lock;
#session C
begin;
insert into table_lock values (2,"b");
#session D
begin;
truncate table_lock;
waiting......
#or
#ALTER TABLE XXX RENAME TO XXXXX;
#session E
select * from table_lock;
waiting......

#eg:

Pid: 1980
Lock_Granted: false , Mode: AccessExclusiveLock , FastPath: false , VirtualTransaction: 9/4 , Session_State: active
Username: test , Database: postgres , Client_Addr: NULL , Client_Port: -1 , Application_Name: psql
Xact_Start: 2019-02-11 15:35:33.054468+08 , Query_Start: 2019-02-11 15:35:34.283192+08 , Xact_Elapse: 00:01:18.422846 , Query_Elapse: 00:01:17.194122
SQL (Current SQL in Transaction):
truncate table_lock;
--------
Pid: 1894
Lock_Granted: true , Mode: RowExclusiveLock , FastPath: false , VirtualTransaction: 5/128 , Session_State: idle in transaction
Username: test , Database: postgres , Client_Addr: NULL , Client_Port: -1 , Application_Name: psql
Xact_Start: 2019-02-11 15:17:48.342793+08 , Query_Start: 2019-02-11 15:17:48.344543+08 , Xact_Elapse: 00:19:03.134521 , Query_Elapse: 00:19:03.132771
SQL (Current SQL in Transaction):
insert into table_lock values (2,"b");
--------

处理方法

select pid, state from pg_stat_activity;
# 查看当前会话的pid
highgo=# select pg_backend_pid();
#idle in transaction状态

or

如果他们想手动或定时杀idle的会话,可以用这个语句

SELECT pg_terminate_backend(pid)
FROM pg_stat_activity
WHERE
pid <> pg_backend_pid()
AND state in ("idle", "idle in transaction", "idle in transaction (aborted)", "disabled")
AND state_change < current_timestamp - INTERVAL "15" MINUTE;

state text Current overall state of this backend. Possible values are: active: The backend is executing a query. idle: The backend is waiting for a new client command. idle in transaction: The backend is in a transaction, but is not currently executing a query. idle in transaction (aborted): This state is similar to idle in transaction, except one of the statements in the transaction caused an error. fastpath function call: The backend is executing a fast-path function. disabled: This state is reported if track_activities is disabled in this backend.

要快速解出这种状态,terminate最大的锁对应的PID即可。

select pg_terminate_backend(2066);
postgres=# select pg_terminate_backend(1980);
-[ RECORD 1 ]--------+--
pg_terminate_backend | t
阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-数据库
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯