我正在调查Postgres数据库上常用的查询,以帮助减少XID的使用。我可以使用pg_stat_statements
获取执行的查询列表和调用次数,但是它不包括由于唯一约束违规等原因而失败的查询。有没有办法记录并记录这些失败的查询?
示例:
test_xid=# \d test
Table "public.test"
Column | Type | Modifiers
--------+---------+-----------
id | integer | not null
Indexes:
"test_pkey" PRIMARY KEY, btree (id)
test_xid=# truncate test;
TRUNCATE TABLE
test_xid=# select pg_stat_statements_reset();
pg_stat_statements_reset
--------------------------
(1 row)
test_xid=# select txid_current();
txid_current
--------------
224547
(1 row)
test_xid=# insert into test(id) values (1);
INSERT 0 1
test_xid=# insert into test(id) values (1);
ERROR: duplicate key value violates unique constraint "test_pkey"
DETAIL: Key (id)=(1) already exists.
test_xid=# insert into test(id) values (1);
ERROR: duplicate key value violates unique constraint "test_pkey"
DETAIL: Key (id)=(1) already exists.
test_xid=# insert into test(id) values (1);
ERROR: duplicate key value violates unique constraint "test_pkey"
DETAIL: Key (id)=(1) already exists.
test_xid=# select txid_current();
txid_current
--------------
224552
(1 row)
test_xid=# select query, calls from pg_stat_statements;
query | calls
------------------------------------+-------
insert into test(id) values (?); | 1
select pg_stat_statements_reset(); | 1
select txid_current(); | 2
(3 rows)
test_xid=# select pg_stat_statements_reset();
pg_stat_statements_reset
--------------------------
(1 row)
test_xid=# insert into test(id) values (1);
ERROR: duplicate key value violates unique constraint "test_pkey"
DETAIL: Key (id)=(1) already exists.
test_xid=# select query, calls from pg_stat_statements;
query | calls
------------------------------------+-------
select pg_stat_statements_reset(); | 1
(1 row)
可以看出,INSERT查询不会出现在pg_stat_statments
中,如果它始终失败,并且如果查询已经成功执行,则调用计数不会因后续的失败查询而增加,甚至虽然失败的查询导致当前的XID增加。
答案 0 :(得分:0)
对于一般统计信息,您可以查看pg_stat_database.xact_rollback。如果你想知道回滚的语句,我唯一能想到的不涉及C代码的是记录所有语句然后查看日志。
如果你想深入研究C代码(或付钱给某人),我认为向pg_stat_statements添加回滚支持并不是非常困难,我怀疑社区会欢迎这一点。