gpt4 book ai didi

database - Postgresql:内部连接需要 70 秒

转载 作者:搜寻专家 更新时间:2023-10-30 20:58:22 24 4
gpt4 key购买 nike

我有两个表 -

表 A:1MM 行,AsOfDate, Id, BId(表B的外键)

表 B:5 万行,Id、标志、ValidFrom、ValidTo

表 A 在 2011/01/01 和 2011/12/31 之间每天包含 100 个 BId 的多条记录。表 B 包含 100 个投标的多个非重叠(在 validfrom 和 validto 之间)记录。

连接的任务是返回在给定的 AsOfDate 为 BId 激活的标志。

select 
a.AsOfDate, b.Flag
from
A a inner Join B b on
a.BId = b.BId and b.ValidFrom <= a.AsOfDate and b.ValidTo >= a.AsOfDate
where
a.AsOfDate >= 20110101 and a.AsOfDate <= 20111231

在具有 64Gb 内存的超高端服务器 (+3Ghz) 上,此查询需要大约 70 秒。

我在测试时对每个字段组合都有索引 - 但无济于事。

索引:a.AsOfDate, a.AsOfDate+a.bId, a.bid索引:b.bid, b.bid+b.validfrom

还尝试了下面建议的范围查询(62 秒)

在 VM 中运行的免费版 Sql Server 上的相同查询需要约 1 秒才能完成。

有什么想法吗?

Postgres 9.2

查询计划

QUERY PLAN                                       
---------------------------------------------------------------------------------------
Aggregate (cost=8274298.83..8274298.84 rows=1 width=0)
-> Hash Join (cost=1692.25..8137039.36 rows=54903787 width=0)
Hash Cond: (a.bid = b.bid)
Join Filter: ((b.validfrom <= a.asofdate) AND (b.validto >= a.asofdate))
-> Seq Scan on "A" a (cost=0.00..37727.00 rows=986467 width=12)
Filter: ((asofdate > 20110101) AND (asofdate < 20111231))
-> Hash (cost=821.00..821.00 rows=50100 width=12)
-> Seq Scan on "B" b (cost=0.00..821.00 rows=50100 width=12)

参见 http://explain.depesz.com/s/1c5用于分析输出

here is the query plan from sqlserver for the same query

最佳答案

考虑使用 postgresql 9.2 中可用的范围类型:

create index on a using gist(int4range(asofdate, asofdate, '[]'));
create index on b using gist(int4range(validfrom, validto, '[]'));

您可以像这样查询匹配范围内的日期:

select * from a
where int4range(asofdate,asofdate,'[]') && int4range(20110101, 20111231, '[]');

对于 b 中的行与 a 中的记录重叠,如下所示:

select *
from b
join a on int4range(b.validfrom,b.validto,'[]') @> a.asofdate
where a.id = 1

(&&表示“重叠”,@>表示“包含”,'[]'表示创建一个包含的范围两个端点)

关于database - Postgresql:内部连接需要 70 秒,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13088407/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com