postgres 计数或求和忽略脏东西

发布于 2024-10-20 22:40:58 字数 349 浏览 0 评论 0原文

我有一个索引,其中必须总结的信息位于索引中。索引看起来像这样 (key,sumable_attribute)

现在如果我说:

SELECT sum(sumable_attribute) from table where key between 1 and 1000000

如果我们能够沿着 b 树的链接叶子运行并收集 sumable_attributes,那就完美了。

但是:MVCC 告诉我们检查数据的可见性...我不在乎我的结果是否不是 100% 正确,只要它很快。 MyISAM 有点快...

我如何告诉 postgres 忽略这个?

I have an index where the information that has to be summed up is in the index. Index looks like this (key,sumable_attribute).

Now if I say:

SELECT sum(sumable_attribute) from table where key between 1 and 1000000

It would be perfect if we can run along the linked leafs of the b-tree and collect the sumable_attributes.

BUT: MVCC tells us to check the visibility of the data... I don't care if my result isn't 100% correct, as long as it is fast. MyISAM kind of fast...

How do I tell postgres to ignore this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蓝天白云 2024-10-27 22:40:58

PostgreSQL 目前实现两种不同的隔离级别:“读已提交”和“可序列化”。您可以使用 READ UNCOMMITTED 请求脏读,但您将获得“读已提交”隔离级别。

由于 READ COMMITTED 是默认设置,因此您可能正在使用 PostgreSQL 提供的最快隔离级别。

但是发布 EXPLAIN ANALYZE query_name_or_sql_statement 的输出可能会给我们一些想法。

PostgreSQL currently implements two distinct isolation levels: "Read Committed" and "Serializable". You can ask for a dirty read with READ UNCOMMITTED, but you'll get "Read Committed" isolation level instead.

Since READ COMMITTED is the default, you're probably using the fastest isolation level PostgreSQL offers.

But posting the output of EXPLAIN ANALYZE query_name_or_sql_statement might give us some ideas.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文