为什么我的timestamp索引没有被返回200个3亿记录的查询使用

时间:2018-02-08 21:10:40

标签: indexing postgresql-9.5

我有一张桌子。

这是一个简单的表,称为带有一些时间戳字段的事件。

CREATE TABLE public.event (
id int8 NOT NULL DEFAULT nextval('event_id_seq'::regclass),
email_id bpchar(36) NOT NULL,
sending timestamp NULL,
CONSTRAINT event_pkey PRIMARY KEY (id)
)
WITH (
   OIDS=FALSE
);

CREATE INDEX email_idx ON public.event (email_id);

CREATE INDEX sending_idx ON public.event ((sending::date));

其中一个时间戳字段称为发送,具有日期索引。

问题是postgres正在使用seqscan来检索以下查询的结果:

select email_id from event where sending between  '2018-01-07 00:33:00'  and '2018-01-07 00:33:20' 

我用以下结果进行了解释分析:

Seq Scan on event  (cost=0.00..11391171.08 rows=139 width=37) (actual time=265885.080..503636.060 rows=257 loops=1)
Filter: ((sending >= '2018-01-07 00:33:00'::timestamp without time zone) AND (sending <= '2018-01-07 00:33:20'::timestamp without time zone))
 Rows Removed by Filter: 317633116
Planning time: 0.066 ms
Execution time: 503650.634 ms

为什么postgres执行seqscan从索引字段中检索数百万条记录中的几百条记录?

谢谢!

1 个答案:

答案 0 :(得分:0)

您没有为timestamp索引的date做索引。在where子句中,您还需要将列与日期进行比较以使索引可用。

将其与日期进行比较:

where sending between date '2018-01-07'  and date '2018-01-07' 

或在时间戳值上创建索引:

CREATE INDEX sending_idx ON public.event (sending);

然后您的原始查询应该使用索引。

不要忘记analyze您的表格,以使您的统计信息保持最新状态;