PostgreSQL 10.0 preview 功能增强 - 两段式索引(约束字段+附加字段)

本文涉及的产品
云原生数据库 PolarDB MySQL 版,Serverless 5000PCU 100GB
云原生数据库 PolarDB 分布式版,标准版 2核8GB
云数据库 RDS MySQL Serverless,0.5-2RCU 50GB
简介:

标签

PostgreSQL , 10.0 , 约束覆盖索引


背景

如果我们有这样的查询

select * from tbl where c1=? and c2=? and c3=? and c4=?

我们建立了复合索引达到最好的查询性能

create index idx on tbl(c1,c2,c3,c4);

同时还有这样的约束

create unique index idx on tbl (c1,c2);

那么这样的场景中,我们就有两个索引。

PostgreSQL 10.0提供了一个新的功能,可以将这两个索引合并,只有一个索引的体积,同时支持这两个场景。。

create unique index idx on tbl (c1,c2) including (c3,c4);

这便是唯一约束+附加字段组合功能索引

详见

Hi hackers,  

I'm working on a patch that allows to combine covering and unique   
functionality for btree indexes.  

_Previous discussion was here:_  
1) Proposal thread   
<http://www.postgresql.org/message-id/55F2CCD0.7040608@postgrespro.ru>  
2) Message with proposal clarification   
<http://www.postgresql.org/message-id/55F84DF4.5030207@postgrespro.ru>  

In a nutshell, the feature allows to create index with "key" columns and   
"included" columns.  
"key" columns can be used as scan keys. Unique constraint relates only   
to "key" columns.  
"included" columns may be used as scan keys if they have suitable opclass.  
Both "key" and "included" columns can be returned from index by   
IndexOnlyScan.  

Btree is the default index and it's used everywhere. So it requires   
properly testing. Volunteers are welcome)  

_Use case:_  
- We have a table (c1, c2, c3, c4);  
- We need to have an unique index on (c1, c2).  
- We would like to have a covering index on all columns to avoid reading   
of heap pages.  

Old way:  
CREATE UNIQUE INDEX olduniqueidx ON oldt USING btree (c1, c2);  
CREATE INDEX oldcoveringidx ON oldt USING btree (c1, c2, c3, c4);  

What's wrong?  
Two indexes contain repeated data. Overhead to data manipulation   
operations and database size.  

New way:  
CREATE UNIQUE INDEX newidx ON newt USING btree (c1, c2) INCLUDING (c3, c4);  

The patch is attached.  
In 'test.sql' you can find a test with detailed comments on each step,   
and comparison of old and new indexes.  

New feature has following syntax:  
CREATE UNIQUE INDEX newidx ON newt USING btree (c1, c2) INCLUDING (c3, c4);  
Keyword INCLUDING defines the "included" columns of index. These columns   
aren't concern to unique constraint.  
Also, them are not stored in index inner pages. It allows to decrease   
index size.  

_Results:_  
1) Additional covering index is not required anymore.  
2) New index can use IndexOnlyScan on queries, where old index can't.  

For example,  
explain analyze select c1, c2 from newt where c1<10000 and c3<20;  

*more examples in 'test.sql'  

_Future work:_  
To do opclasses for "included" columns optional.  

CREATE TABLE tbl (c1 int, c4 box);  
CREATE UNIQUE INDEX idx ON tbl USING btree (c1) INCLUDING (c4);  

If we don't need c4 as an index scankey, we don't need any btree opclass   
on it.  
But we still want to have it in covering index for queries like  

SELECT c4 FROM tbl WHERE c1=1000;  
SELECT * FROM tbl WHERE c1=1000;  

--   
Anastasia Lubennikova  
Postgres Professional:http://www.postgrespro.com  
The Russian Postgres Company  

这个patch的讨论,详见邮件组,本文末尾URL。

PostgreSQL社区的作风非常严谨,一个patch可能在邮件组中讨论几个月甚至几年,根据大家的意见反复的修正,patch合并到master已经非常成熟,所以PostgreSQL的稳定性也是远近闻名的。

参考

https://commitfest.postgresql.org/13/961/

https://www.postgresql.org/message-id/flat/56168952.4010101@postgrespro.ru#56168952.4010101@postgrespro.ru

相关实践学习
使用PolarDB和ECS搭建门户网站
本场景主要介绍基于PolarDB和ECS实现搭建门户网站。
阿里云数据库产品家族及特性
阿里云智能数据库产品团队一直致力于不断健全产品体系,提升产品性能,打磨产品功能,从而帮助客户实现更加极致的弹性能力、具备更强的扩展能力、并利用云设施进一步降低企业成本。以云原生+分布式为核心技术抓手,打造以自研的在线事务型(OLTP)数据库Polar DB和在线分析型(OLAP)数据库Analytic DB为代表的新一代企业级云原生数据库产品体系, 结合NoSQL数据库、数据库生态工具、云原生智能化数据库管控平台,为阿里巴巴经济体以及各个行业的企业客户和开发者提供从公共云到混合云再到私有云的完整解决方案,提供基于云基础设施进行数据从处理、到存储、再到计算与分析的一体化解决方案。本节课带你了解阿里云数据库产品家族及特性。
相关文章
|
22天前
|
关系型数据库 Serverless 分布式数据库
【公测】PolarDB PostgreSQL版Serverless功能免费使用​!
【公测】PolarDB PostgreSQL版Serverless功能免费使用​,公测于2024年3月28日开始,持续三个月,公测期间可以免费使用!
|
1月前
|
关系型数据库 分布式数据库 数据库
PolarDB常见问题之加了索引但是查询没有使用如何解决
PolarDB是阿里云推出的下一代关系型数据库,具有高性能、高可用性和弹性伸缩能力,适用于大规模数据处理场景。本汇总囊括了PolarDB使用中用户可能遭遇的一系列常见问题及解答,旨在为数据库管理员和开发者提供全面的问题指导,确保数据库平稳运行和优化使用体验。
|
3月前
|
关系型数据库 PostgreSQL
PostgreSQL排序字段不唯一导致分页查询结果出现重复数据
PostgreSQL排序字段不唯一导致分页查询结果出现重复数据
41 0
|
3月前
|
存储 关系型数据库 MySQL
PolarDB优势功能
PolarDB优势功能
|
6月前
|
存储 关系型数据库 数据库
深入了解 PostgreSQL:功能、特性和部署
PostgreSQL,通常简称为Postgres,是一款强大且开源的关系型数据库管理系统(RDBMS),它在数据存储和处理方面提供了广泛的功能和灵活性。本文将详细介绍 PostgreSQL 的功能、特性以及如何部署和使用它。
226 1
深入了解 PostgreSQL:功能、特性和部署
|
1月前
|
关系型数据库 Serverless 分布式数据库
PolarDB PostgreSQL版Serverless功能上线公测啦,公测期间免费使用!
Serverless数据库能够使得数据库集群资源随客户业务负载动态弹性扩缩,将客户从复杂的业务资源评估和运维工作中解放出来。PolarDB PostgreSQL版 Serverless提供了CPU、内存、存储、网络资源的实时弹性能力,构建计算与存储分离架构下的 PolarDB PostgreSQL版产品新形态。
|
2月前
|
SQL 关系型数据库 分布式数据库
在PolarDB for PostgreSQL中,你可以使用LIKE运算符来实现类似的查询功能,而不是使用IF函数
在PolarDB for PostgreSQL中,你可以使用LIKE运算符来实现类似的查询功能,而不是使用IF函数
43 7
|
2月前
|
SQL 算法 关系型数据库
PolarDB-X的XPlan索引选择
对于数据库来说,正确的选择索引是基本的要求,选错索引轻则导致查询缓慢,重则导致数据库整体不可用。PolarDB-X存在多种不同的索引,局部索引、全局索引、列存索引、归档表索引。本文主要介绍一种CN上的局部索引算法:XPlan索引选择。
125755 13
PolarDB-X的XPlan索引选择
|
2月前
|
关系型数据库 Linux Shell
Centos系统上安装PostgreSQL和常用PostgreSQL功能
Centos系统上安装PostgreSQL和常用PostgreSQL功能
|
3月前
|
关系型数据库 MySQL 分布式数据库
PolarDB MySQL企业版与标准版功能对比:如何选择适合您的版本?
随着数字化时代的到来,企业对于数据处理的需求越来越高,而数据库作为数据处理的核心,其性能和成本成为了企业关注的焦点。阿里云全新推出的PolarDB MySQL企业版和标准版,以全新的架构和优化,为企业提供了高性能、低成本的数据库解决方案。但在功能上,这两个版本有很多差异,我们该如何选择呢?
56 2

相关产品

  • 云原生数据库 PolarDB