PPAS可以安装分区表

本文涉及的产品
云原生数据库 PolarDB MySQL 版,通用型 2核4GB 50GB
云原生数据库 PolarDB PostgreSQL 版,标准版 2核4GB 50GB
简介:

在PostgreSQL中,分区表是无法建立的,或者说是假的分区表。

步骤通常如下:

建立base表,建立继承base表的各个子表,为base表建立rule,建立trigger。

这样,把base表当作分区表的入口,由于insert/update时不断触发trigger,其效率还是很低下的。

可以参见

https://wiki.postgresql.org/wiki/Table_partitioning

http://www.postgresql.org/docs/current/interactive/ddl-partitioning.html

查询的时候,optimizer 到达子表是没有问题的。

Currently we allow the user to create arbitrary nested tables with arbitrary constraints and then the planner tries to detect at run-time which child tables are candidates for the query. See PostgreSQL Partitioning for details.

也可以参考:

http://blog.csdn.net/beiigang/article/details/9056263

http://pgpen.blogspot.com/2013_05_01_archive.html

在PPAS9.0里,建立分区表仍然是一个比较痛苦的工作。

但是PPAS9.1和PPAS9.2里面,带有直接建立分区表的功能,使用起来更方便了:

例如:

复制代码
edb=# drop table employees cascade;
DROP TABLE
edb=# 
edb=# create table employees
edb-# ( empno integer,
edb(#   ename varchar(10),
edb(#   job varchar(9),
edb(# PRIMARY KEY (empno)
edb(# )
edb-# partition by list (job)
edb-# ( partition emp_mgmt values ('manager'),
edb(#   partition emp_sales values ('salesman'),
edb(#   partition emp_ops values ('clerk')
edb(# );
CREATE TABLE
edb=# \dt 
                         
   schema     |           name            |  type    |    owner    
--------------+---------------------------+----------+--------------
 enterprisedb | employees                 | テーブル   | enterprisedb
 enterprisedb | employees_emp_mgmt        | テーブル   | enterprisedb
 enterprisedb | employees_emp_ops         | テーブル   | enterprisedb
 enterprisedb | employees_emp_sales       | テーブル   | enterprisedb
 ...
(21 rows)

edb=# 
复制代码

再看index的状态,那是非常有趣的。

 

复制代码
edb=# \di
                                        
   schema     |           name           | type      |    owner     |         table         
--------------+--------------------------+----- -----+--------------+--------------------------
 enterprisedb | employees_emp_mgmt_pkey  | index     | enterprisedb | employees_emp_mgmt
 enterprisedb | employees_emp_ops_pkey   | index     | enterprisedb | employees_emp_ops
 enterprisedb | employees_emp_sales_pkey | index     | enterprisedb | employees_emp_sales
 enterprisedb | employees_pkey           | index     | enterprisedb | employees
 ...
(18 rowa)

edb=# 
复制代码

 

而如果在postgresql里建立分区表,涉及到index就很麻烦了:postgresql不支持跨越表的索引。

http://www.linuxforu.com/2012/01/partitioning-in-postgresql/





本文转自健哥的数据花园博客园博客,原文链接:http://www.cnblogs.com/gaojian/p/3271980.html,如需转载请自行联系原作者


相关实践学习
使用PolarDB和ECS搭建门户网站
本场景主要介绍基于PolarDB和ECS实现搭建门户网站。
阿里云数据库产品家族及特性
阿里云智能数据库产品团队一直致力于不断健全产品体系,提升产品性能,打磨产品功能,从而帮助客户实现更加极致的弹性能力、具备更强的扩展能力、并利用云设施进一步降低企业成本。以云原生+分布式为核心技术抓手,打造以自研的在线事务型(OLTP)数据库Polar DB和在线分析型(OLAP)数据库Analytic DB为代表的新一代企业级云原生数据库产品体系, 结合NoSQL数据库、数据库生态工具、云原生智能化数据库管控平台,为阿里巴巴经济体以及各个行业的企业客户和开发者提供从公共云到混合云再到私有云的完整解决方案,提供基于云基础设施进行数据从处理、到存储、再到计算与分析的一体化解决方案。本节课带你了解阿里云数据库产品家族及特性。
目录
相关文章
|
存储 缓存 安全
分区表 MBR| 学习笔记
快速学习分区表 MBR
分区表 MBR| 学习笔记
|
弹性计算
parted重新创建分区扩展分区大小
parted重新创建分区扩展分区大小
|
OLAP 数据库 索引
分区表
分区表
165 0
|
索引 SQL
对已存在的表进行分区时遇到的坑
在网上能够找到很多关于表分区的资料,可是大部分都是在介绍如何给一个新表创建表分区,而对已存在的表如何做分区的文章相对比较少,因此一些坑没有被“挖掘”出来或者“曝光率”比较低。
1551 0
|
测试技术 索引
非分区表是否可以创建分区索引?
有同事问一个问题, 一张非分区表,是否可以创建分区索引? 答案是可以,但分区索引的类型有限制。 MOS这篇文章给出了答案,以及一些例子,What Is The Global Partitioned Index On Non Partitioned Table? (文档 ID 1612359.1)。
1146 0