postgresql delete优化

postgresql delete优化,第1张

概述最新需要整理数据库 因为有些表已经达到了2千多万行数据,并且有相当一部分数据是几年以前的 所以那些数据,对于用户来说是没有必要,所以不得不考虑清除部分过期的数据 但是发现当我使用delete时,发现删除数据很慢,语句如下 delete from tablename where id <500000 从sql 上发现,很难有优化的地方了,这种语句已经相当的精炼了 并且查询了下,发现主键已经建立了索引

最新需要整理数据库

因为有些表已经达到了2千多万行数据,并且有相当一部分数据是几年以前的

所以那些数据,对于用户来说是没有必要,所以不得不考虑清除部分过期的数据


但是发现当我使用delete时,发现删除数据很慢,语句如下

delete from tablename where ID <500000


从sql 上发现,很难有优化的地方了,这种语句已经相当的精炼了

并且查询了下,发现主键已经建立了索引


后来几经查询,终于找到了解决方案(还是搜索国外的好)

原来,我这个表用到了外键,而外键表又用到了外键表,所以是个嵌套的表


所以只需在表的层面调用:

ALTER table mytable disABLE TRIGGER ALL;

在删除之后再调用:

ALTER table mytable ENABLE TRIGGER ALL;删除数据从几十分钟,缩短到1分钟之内,终于达到了可接受的范围摘自一段老外的描述:
The usual advice when you complain about slow bulk deletions in postgresql is "make sure the foreign keys (pointing to the table you are deleting from) are indexed". This is because postgresql doesn't create the indexes automatically for all the foreign keys (FK) which can be consIDered a degree of freedom or a nuisance,depends how you look at it. Anyway,the indexing usually solves the performance issue. Unless you stumble upon a FK fIEld that is not indexable. like I dID.

The fIEld in question has the same value repeated over thousands of rows. Neither B-tree nor hash indexing works so postgresql is forced to do the slow sequential scan each time it deletes the table referenced by this FK (because the FK is a constraint and an automated check is triggered). Multiply this by the number of rows deleted and you'll see the minutes adding up.


在删除多余的记录之后

最好做一个vacuum和reindex这2个 *** 作,会让表的物理空间更加优化

REINDEX table tablename

vacuum FulL tablename


经过这件事,让我觉得

你用Google搜索对应的外文解决方案一定要输对对应的key

对于这个Google的关键字为:

postgres bulk delete

或者

postgres optimize delete


最后附上链接:

http://od-eon.com/blogs/stefan/optimizing-particular-case-bulk-deletion-postgresq/ http://www.linuxinsight.com/optimize_postgresql_database_size.@R_502_6832@

总结

以上是内存溢出为你收集整理的postgresql delete优化全部内容,希望文章能够帮你解决postgresql delete优化所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1177539.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-02
下一篇 2022-06-02

发表评论

登录后才能评论

评论列表(0条)

保存