我在 PostgreSQL 9.2 中有一个大表,我按照手册中的描述进行了分区。嗯……差不多!我真正的分区键不在分区表本身中,而是在连接表中,如下所示(简化):
-- millions to tens of millions of rows
CREATE TABLE data
(
slice_id integer NOT NULL,
point_id integer NOT NULL,
-- ... data columns ...,
CONSTRAINT pk_data PRIMARY KEY (slice_id, point_id),
CONSTRAINT fk_data_slice FOREIGN KEY (slice_id) REFERENCES slice (id)
CONSTRAINT fk_data_point FOREIGN KEY (point_id) REFERENCES point (id)
)
-- hundreds to thousands of rows
CREATE TABLE slice
(
id serial NOT NULL,
partition_date timestamp without time zone NOT NULL,
other_date timestamp without time zone NOT NULL,
int_key integer NOT NULL
CONSTRAINT pk_slice PRIMARY KEY (id)
)
-- about 40,000 rows
CREATE TABLE point
(
-- ... similar to "slice" ...
)
要分区的表 ( ) 包含和data
的每个组合的行,每个组合都有一个复合键。我只想在一个键列上对其进行分区,它是. 当然,我的子表上的检查约束不能直接包含它,所以我包含与that 对应的所有值的范围,如下所示:point
slice
partition_date
slice
slice.id
partition_date
ALTER TABLE data_part_123 ADD CONSTRAINT ck_data_part_123
CHECK (slice_id >= 1234 AND slice_id <= 1278);
这一切都适用于插入数据。但是,查询不使用上述 CHECK 约束。例如。
SELECT *
FROM data d
JOIN slice s ON d.slice_id = s.id
WHERE s.partition_date = '2013-07-23'
我可以在查询计划中看到这仍然会扫描所有子表。我尝试以多种方式重写查询,包括 CTE 和子选择,但这并没有帮助。
有什么办法可以让规划者“理解”我的分区方案?我真的不想在data
表中复制分区键数百万次。
查询计划如下所示:
Aggregate (cost=539243.88..539243.89 rows=1 width=0)
-> Hash Join (cost=8.88..510714.02 rows=11411945 width=0)
Hash Cond: (d.slice_id = s.id)
-> Append (cost=0.00..322667.41 rows=19711542 width=4)
-> Seq Scan on data d (cost=0.00..0.00 rows=1 width=4)
-> Seq Scan on data_part_123 d (cost=0.00..135860.10 rows=8299610 width=4)
-> Seq Scan on data_part_456 d (cost=0.00..186807.31 rows=11411931 width=4)
-> Hash (cost=7.09..7.09 rows=143 width=4)
-> Seq Scan on slice s (cost=0.00..7.09 rows=143 width=4)
Filter: (partition_date = '2013-07-23 00:00:00'::timestamp without time zone)