1. 介绍

在这一篇文章PostgreSQL的表的继承和分区之介绍(一)介绍了表的继承和分区的概念以及如何使用的方法。

首先是分区建立在继承的基础上,先创建母表,通过约束条件创建子表,再通过创建触发器保证数据能插入到相应的子表中。这一切都是需要我们手动来创建的。

pg_partman把这一些手动的过程全封装到函数中,通过函数的调用即可方便创建与维护,并且避免了手工创建引入错误。

2. 安装

下载源代码安装。

  1. git clone git@github.com:keithf4/pg_partman.git
  2. cd pg_partman
  3. make install

进入psql安装pg_partman扩展。

  1. CREATE SCHEMA partman;
  2. CREATE EXTENSION pg_partman SCHEMA partman;

3. 使用

设置partman为当前的表搜索路径。

  1. set search_path to partman;

先创建一张母表。

  1. CREATE schema test;
  2. CREATE TABLE test.part_test (col1 serial, col2 text, col3 timestamptz NOT NULL DEFAULT now());

这张表很简单,只有三列,最后一列是时间。

  1. SELECT partman.create_parent('test.part_test', 'col3', 'time', 'daily');

我们先来查看创建成功后结果,使用下面的命令。

  1. partman=# \d+ test.part_test

结果是:

  1. Table "test.part_test"
  2. Column | Type | Modifiers | Storage | Stats target | Description
  3. --------+--------------------------+---------------------------------------------------------------+----------+--------------+-------------
  4. col1 | integer | not null default nextval('test.part_test_col1_seq'::regclass) | plain | |
  5. col2 | text | | extended | |
  6. col3 | timestamp with time zone | not null default now() | plain | |
  7. Triggers:
  8. part_test_part_trig BEFORE INSERT ON test.part_test FOR EACH ROW EXECUTE PROCEDURE test.part_test_part_trig_func()
  9. Child tables: test.part_test_p2015_10_10,
  10. test.part_test_p2015_10_11,
  11. test.part_test_p2015_10_12,
  12. test.part_test_p2015_10_13,
  13. test.part_test_p2015_10_14,
  14. test.part_test_p2015_10_15,
  15. test.part_test_p2015_10_16,
  16. test.part_test_p2015_10_17,
  17. test.part_test_p2015_10_18

由上可知,总共创建了一个叫part_test_part_trig_func的触发器和九张子表(part_test_p2015_10_11到part_test_p2015_10_18)。

可以用下面的命令来查看触发器part_test_part_trig_func的内容。

  1. partman=# select prosrc from pg_proc where proname='part_test_part_trig_func';

今天的时间是:

  1. rails365 git:(master) date
  2. Wed Oct 14 21:46:30 HKT 2015

也就是14号之前有四张表,14号之后有四张表。

当然这些规则可以由我们自己自定义的,只要我们熟悉了create_parent的用法就可以。

在上面的例子中。

  1. SELECT partman.create_parent('test.part_test', 'col3', 'time', 'daily');

create_parent的第一个参数接的是母表的名称,第二个接的是要分区的列的名称,第三个表示按照时间来分区,第四表示是按照时间上的每天来分区。这也解释了为什么会出现上面的按时间顺序命名的分区表的情况。

关于pg_partman的更多内容可以查看官方的这篇文档pg_partman.md

关于pg_partman的更多示例可以查看官方的这篇文档pg_partman_howto.md

另外,ruby也有相关的分区工具,就是用ruby来生成分区的指令。https://github.com/ankane/pgslice

完结。