PostgreSQL10分区表探密

分区介绍

肥东网站建设公司成都创新互联,肥东网站设计制作,有大型网站制作公司丰富经验。已为肥东上1000+提供企业网站建设服务。企业网站搭建\成都外贸网站建设公司要多少钱,请找那个售后服务好的肥东做网站的公司定做!

PostgreSQL的分区需要先建立主表,然后再建立子表,使用继承的特性,但不需要手动写触发器/规则了,目前支持range、list分区,10 正式版发布时不知道会不会有其他的,后面我会介绍我基于10 Beta2添加的hash分区。

range分区

分区语法:

 
 
 
  1. postgres=# create table r (r_id int, r_name name, r_date date) partition by range (r_id);
  2. CREATE TABLE
  3. postgres=# create table r1 partition of r for values from (1) to (10);
  4. CREATE TABLE
  5. postgres=# create table r2 partition of r for values from (10) to (20);
  6. CREATE TABLE
  7. postgres=# create table r3 partition of r for values from (20) to (30);
  8. CREATE TABLE
  9. postgres=# insert into r select id, md5(random()::text), now() + (id||'day')::interval from generate_series(1, 29) t(id);
  10. INSERT 0 29
  11. postgres=# select *, tableoid::regclass from r;
  12.  r_id |  r_name  |   r_date   | tableoid 
  13. ------+----------------------------------+------------+----------
  14.     1 | 1d0d0680930198d2962b3b5f9cf82083 | 2017-08-09 | r1
  15.     2 | 47ba81de41d71bd51b18c7861a594bdf | 2017-08-10 | r1
  16.     3 | 820b0b1affe3bf0e5705aee3e77b0b29 | 2017-08-11 | r1
  17.     4 | 0cc06451bd0652d2583a733374d787b3 | 2017-08-12 | r1
  18.     5 | 642108381b2fc203b830f1215a0d7c6a | 2017-08-13 | r1
  19.     6 | 57e3869b2ab8ee1c0bca96b1cf022a5d | 2017-08-14 | r1
  20.     7 | 5357fa6de3c1c559edb78cddb4eae902 | 2017-08-15 | r1
  21.     8 | 6ea5a7dba4dfc6c81ca5932be86a9341 | 2017-08-16 | r1
  22.     9 | d3d4dcb9dc48e0629042ede7ed9c7a33 | 2017-08-17 | r1
  23.    10 | 248d6f3e072c6c137a3402d11fc5b1d7 | 2017-08-18 | r2
  24.    11 | ae3a671045ded43260bc4d0bbcb7e428 | 2017-08-19 | r2
  25.    12 | acdc89bb326d9f0caaeeb86bfeac3a76 | 2017-08-20 | r2
  26.    13 | 147b6e975d7299db66e170874b913b25 | 2017-08-21 | r2
  27.    14 | 6041a6b84b1af615bdb34a5926d72a33 | 2017-08-22 | r2
  28.    15 | 3d96e08395af120dd36e10a0252ce29c | 2017-08-23 | r2
  29.    16 | 5e613d10c9cac126453413ddfc17c210 | 2017-08-24 | r2
  30.    17 | e92fc34d180be652e72a63b92d327f1b | 2017-08-25 | r2
  31.    18 | 3109c4e8f4da701721151df11a4d266f | 2017-08-26 | r2
  32.    19 | 35ba5892f3b88aa3254445fbf5267eea | 2017-08-27 | r2
  33.    20 | c92d1df47257784bb11d7bfbb52b5710 | 2017-08-28 | r3
  34.    21 | d076a5498d17ade8f317bf47cfa322c3 | 2017-08-29 | r3
  35.    22 | a66c2e83f1e54e1392964ed71d5b8e20 | 2017-08-30 | r3
  36.    23 | 6a94df0f08921728aa0af9455d05c9f8 | 2017-08-31 | r3
  37.    24 | 248c46d80b926c66c093c500f309614d | 2017-09-01 | r3
  38.    25 | 4da3be147fd1831e8605fc400e7a7503 | 2017-09-02 | r3
  39.    26 | 3029d7e22b7c963e8983200a93894669 | 2017-09-03 | r3
  40.    27 | 720d6d04249e9f3595a19cf59f075332 | 2017-09-04 | r3
  41.    28 | 95b5e5492591c38ddd864d83265e26c4 | 2017-09-05 | r3
  42.    29 | 2628c14bd3f67699ab0411b6fd402460 | 2017-09-06 | r3
  43. (29 rows)
  44. postgres=# explain select * from r where id = 20;
  45. ERROR:  column "id" does not exist
  46. LINE 1: explain select * from r where id = 20;
  47.   ^
  48. postgres=# explain select * from r where r_id = 20;
  49. QUERY PLAN
  50. ----------------------------------------------------------
  51.  Append  (cost=0.00..20.12 rows=4 width=72)
  52.    ->  Seq Scan on r3  (cost=0.00..20.12 rows=4 width=72)
  53.  Filter: (r_id = 20)
  54. (3 rows)
  55. postgres=# set constraint_exclusion = off;
  56. SET
  57. postgres=# explain select * from r where r_id = 20;
  58. QUERY PLAN
  59. ----------------------------------------------------------
  60.  Append  (cost=0.00..60.38 rows=12 width=72)
  61.    ->  Seq Scan on r1  (cost=0.00..20.12 rows=4 width=72)
  62.  Filter: (r_id = 20)
  63.    ->  Seq Scan on r2  (cost=0.00..20.12 rows=4 width=72)
  64.  Filter: (r_id = 20)
  65.    ->  Seq Scan on r3  (cost=0.00..20.12 rows=4 width=72)
  66.  Filter: (r_id = 20)
  67. (7 rows)
  68. postgres=# 
  69. postgres=# create index on r1 (r_id);
  70. CREATE INDEX
  71. postgres=# explain select * from r where r_id = 5;
  72. QUERY PLAN
  73. ----------------------------------------------------------------------------------
  74.  Append  (cost=5.53..25.54 rows=161 width=72)
  75.    ->  Bitmap Heap Scan on r1  (cost=5.53..25.54 rows=161 width=72)
  76.  Recheck Cond: (r_id = 5)
  77.  ->  Bitmap Index Scan on r1_r_id_idx  (cost=0.00..5.48 rows=161 width=0)
  78.    Index Cond: (r_id = 5)
  79. (5 rows)
  80. postgres=# \d+ r*
  81.  Table "public.r"
  82.  Column |  Type   | Collation | Nullable | Default | Storage | Stats target | Description 
  83. --------+---------+-----------+----------+---------+---------+--------------+-------------
  84.  r_id   | integer |   |  | | plain   |  | 
  85.  r_name | name|   |  | | plain   |  | 
  86.  r_date | date|   |  | | plain   |  | 
  87. Partition key: RANGE (r_id)
  88. Partitions: r1 FOR VALUES FROM (1) TO (10),
  89. r2 FOR VALUES FROM (10) TO (20),
  90. r3 FOR VALUES FROM (20) TO (30)
  91. Table "public.r1"
  92.  Column |  Type   | Collation | Nullable | Default | Storage | Stats target | Description 
  93. --------+---------+-----------+----------+---------+---------+--------------+-------------
  94.  r_id   | integer |   |  | | plain   |  | 
  95.  r_name | name|   |  | | plain   |  | 
  96.  r_date | date|   |  | | plain   |  | 
  97. Partition of: r FOR VALUES FROM (1) TO (10)
  98. Partition constraint: ((r_id IS NOT NULL) AND (r_id >= 1) AND (r_id < 10))
  99. Indexes:
  100. "r1_r_id_idx" btree (r_id)
  101.    Index "public.r1_r_id_idx"
  102.  Column |  Type   | Definition | Storage 
  103. --------+---------+------------+---------
  104.  r_id   | integer | r_id   | plain
  105. btree, for table "public.r1"
  106. Table "public.r2"
  107.  Column |  Type   | Collation | Nullable | Default | Storage | Stats target | Description 
  108. --------+---------+-----------+----------+---------+---------+--------------+-------------
  109.  r_id   | integer |   |  | | plain   |  | 
  110.  r_name | name|   |  | | plain   |  | 
  111.  r_date | date|   |  | | plain   |  | 
  112. Partition of: r FOR VALUES FROM (10) TO (20)
  113. Partition constraint: ((r_id IS NOT NULL) AND (r_id >= 10) AND (r_id < 20))
  114. Table "public.r3"
  115.  Column |  Type   | Collation | Nullable | Default | Storage | Stats target | Description 
  116. --------+---------+-----------+----------+---------+---------+--------------+-------------
  117.  r_id   | integer |   |  | | plain   |  | 
  118.  r_name | name|   |  | | plain   |  | 
  119.  r_date | date|   |  | | plain   |  | 
  120. Partition of: r FOR VALUES FROM (20) TO (30)
  121. Partition constraint: ((r_id IS NOT NULL) AND (r_id >= 20) AND (r_id < 30)) 

说明:

  • 创建分区时必须指定主表
  • 分区表和主表列数量、定义必须完全一致
  • 分区表的列可以单独添加约束、索引
  • 向主表插入数据,自动插入到对应分区,如果找不到对应分区,抛出错误
  • range分区范围>=最小值、<***值
  • 修改主表字段名、字段类型,会自动修改所有分区
  • truncate主表会清除所有分区表数据
  • drop主表会把所有子表一起drop
  • \d、\d+ 可查看分区表详细定义

在PostgreSQL10的分区表功能中, 范围分区的KEY支持由多个字段组成,多列组成的KEY可看做是范围分区表的组合约束。

 
 
 
  1. [postgres@localhost bin]$ ./psql 
  2. psql (10beta2)
  3. Type "help" for help.
  4. postgres=# create table r(a int, b int) partition by range (a, b);
  5. CREATE TABLE
  6. postgres=# create table r1 partition of r for values from (1, 60) to (10, 80);
  7. CREATE TABLE
  8. postgres=# create table r2 partition of r for values from (10, 80) to (20, 60);
  9. CREATE TABLE
  10. postgres=# \d+ r*
  11.                                      Table "public.r"
  12.  Column |  Type   | Collation | Nullable | Default | Storage | Stats target | Description 
  13. --------+---------+-----------+----------+---------+---------+--------------+-------------
  14.  a      | integer |           |          |         | plain   |              | 
  15.  b      | integer |           |          |         | plain   |              | 
  16. Partition key: RANGE (a, b)
  17. Partitions: r1 FOR VALUES FROM (1, 60) TO (10, 80),
  18.             r2 FOR VALUES FROM (10, 80) TO (20, 60)
  19.                                     Table "public.r1"
  20.  Column |  Type   | Collation | Nullable | Default | Storage | Stats target | Description 
  21. --------+---------+-----------+----------+---------+---------+--------------+-------------
  22.  a      | integer |           |          |         | plain   |              | 
  23.  b      | integer |           |          |         | plain   |              | 
  24. Partition of: r FOR VALUES FROM (1, 60) TO (10, 80)
  25. Partition constraint: ((a IS NOT NULL) AND (b IS NOT NULL) AND ((a > 1) OR ((a = 1) AND (b >= 60))) AND ((a < 10) OR ((a = 10) AND (b < 80))))
  26.                                     Table "public.r2"
  27.  Column |  Type   | Collation | Nullable | Default | Storage | Stats target | Description 
  28. --------+---------+-----------+----------+---------+---------+--------------+-------------
  29.  a      | integer |           |          |         | plain   |              | 
  30.  b      | integer |           |          |         | plain   |              | 
  31. Partition of: r FOR VALUES FROM (10, 80) TO (20, 60)
  32. Partition constraint: ((a IS NOT NULL) AND (b IS NOT NULL) AND ((a > 10) OR ((a = 10) AND (b >= 80))) AND ((a < 20) OR ((a = 20) AND (b < 60))))
  33. postgres=# insert into r values (10, 70);
  34. INSERT 0 1
  35. postgres=# insert into r values (10, 80);
  36. INSERT 0 1
  37. postgres=# insert into r values (10, 90);
  38. INSERT 0 1
  39. postgres=# select tableoid::regclass, * from r;
  40.  tableoid | a  | b  
  41. ----------+----+----
  42.  r1       | 10 | 70
  43.  r2       | 10 | 80
  44.  r2       | 10 | 90
  45. (7 rows)
  46. postgres=#  

这里需要注意它的分区约束,from (10, 80) to (20, 60),最初还以为是有bug,其实不是,Partition constraint: ((a IS NOT NULL) AND (b IS NOT NULL) AND ((a > 10) OR ((a = 10) AND (b >= 80))) AND ((a < 20) OR ((a = 20) AND (b < 60))))

list分区

语法:

 
 
 
  1. postgres=# create table l (l_id int, l_name name, l_date date) partition by list (l_id);
  2. CREATE TABLE
  3. postgres=# create table l1 partition of l for values in (1);
  4. CREATE TABLE
  5. postgres=# create table l2 partition of l for values in (2);
  6. CREATE TABLE
  7. postgres=# create table l3 partition of l for values in (3);
  8. CREATE TABLE
  9. postgres=# create table l4 partition of l for values in (4);
  10. CREATE TABLE
  11. postgres=# insert into l select id, md5(random()::text), now() + (id||'day')::interval from generate_series(1, 5) t(id);
  12. ERROR:  no partition of relation "l" found for row
  13. DETAIL:  Partition key of the failing row contains (l_id) = (5).
  14. postgres=# insert into l select id, md5(random()::text), now() + (id||'day')::interval from generate_series(1, 4) t(id);
  15. INSERT 0 4
  16. postgres=# explain select * from l where l_id = 2;
  17. QUERY PLAN
  18. ----------------------------------------------------------
  19.  Append  (cost=0.00..20.12 rows=4 width=72)
  20.    ->  Seq Scan on l2  (cost=0.00..20.12 rows=4 width=72)
  21.  Filter: (l_id = 2)
  22. (3 rows)
  23. postgres=#  

hash分区

语法:

 
 
 
  1. [postgres@localhost bin]$ ./psql yonj1e
  2. psql (10beta2)
  3. Type "help" for help.
  4. yonj1e=# create table h (h_id int, h_name name, h_date date) partition by hash(h_id);
  5. CREATE TABLE
  6. yonj1e=# create table h1 partition of h;
  7. CREATE TABLE
  8. yonj1e=# create table h2 partition of h;
  9. CREATE TABLE
  10. yonj1e=# create table h3 partition of h;
  11. CREATE TABLE
  12. yonj1e=# create table h4 partition of h;
  13. CREATE TABLE
  14. yonj1e=# insert into h select id, md5(random()::text), now() + (id||'day')::interval from generate_series(1, 50) t(id);
  15. INSERT 0 50
  16. yonj1e=# select *,tableoid::regclass from h;
  17.  h_id |  h_name  |   h_date   | tableoid 
  18. ------+----------------------------------+------------+----------
  19.     5 | 21fe9a616ce20868769904bbda56aa3e | 2017-08-14 | h1
  20.     6 | 8fa0f42bf4239c05c1cd46a814f71eaa | 2017-08-15 | h1
  21.     8 | 858e324311506fb5c5000a4741b9af3c | 2017-08-17 | h1
  22.    12 | ef4ce7a0f6168605a7c243a709f28bc3 | 2017-08-21 | h1
  23.    13 | 2273522a7b3c286e214a8f57e010568e | 2017-08-22 | h1
  24.    17 | 8bca453f60f13278d3a02149b30394d2 | 2017-08-26 | h1
  25.    19 | 0c2f14a6a8e675341b4e7bdb6ed161de | 2017-08-28 | h1
  26.    23 | f10fff43558393b577d417127bf6a163 | 2017-09-01 | h1
  27.    26 | 1dd0851728458b67a053d500bbb837ae | 2017-09-04 | h1
  28.    28 | 00f67b8636b4d225d3b62bcca9c6d527 | 2017-09-06 | h1
  29.    40 | d3a217d39b6808ff5e37ed3977513e05 | 2017-09-18 | h1
  30.    41 | 0f4c765d809c3db3fa608e986aed1247 | 2017-09-19 | h1
  31.    42 | 022ff983201352092d5d7cb735e9f531 | 2017-09-20 | h1
  32.    44 | c3dba31501b3625aac7f3d4f41512855 | 2017-09-22 | h1
  33.    49 | 21c697e92f936982840b928e03151204 | 2017-09-27 | h1
  34.    11 | 625ad3b0c9d40f7cae26be84a7ae054d | 2017-08-20 | h2
  35.    14 | 7ee39c8df46d7ec61923dffe6f58ec07 | 2017-08-23 | h2
  36.    22 | 77c9230f9eeeb9faaa5c30ff518bbf60 | 2017-08-31 | h2
  37.    29 | 5a6e0895b2477026bcfa4996650797a8 | 2017-09-07 | h2
  38.    31 | 37d84c0c0956df75407e0bfc67a782ed | 2017-09-09 | h2
  39.    34 | f43f07545fba020b47c84952c6af6cc7 | 2017-09-12 | h2
  40.    35 | 2fa08f1311c20ac45a6726bfbc8a4f05 | 2017-09-13 | h2
  41.    36 | d01940a876b86c2de8d67a37813ab89d | 2017-09-14 | h2
  42.    38 | f21e401cb38c6d625b264f53fb59fb8b | 2017-09-16 | h2
  43.    43 | c42fcb14c2d5e5c067db8231d502daae | 2017-09-21 | h2
  44.    45 | cc5670020ba35ae2c324dd33a6efff98 | 2017-09-23 | h2
  45.     1 | 2881b2aadddd2dfef14477369a107319 | 2017-08-10 | h3
  46.     2 | e22e0bba2716e6d969a62502d34fc518 | 2017-08-11 | h3
  47.     9 | a933091df7f51f5b0b6ab43816e5d765 | 2017-08-18 | h3
  48.    15 | 92ee6dc6670ea8e02e746ee508b51022 | 2017-08-24 | h3
  49.    21 | 67b7140105e81730f364ee9de195e0a0 | 2017-08-30 | h3
  50.    46 | f4c47b9e055f6c732dff55cb4fd152b3 | 2017-09-24 | h3
  51.    50 | 1b419faea293d3edab2cfb7f8efb55f8 | 2017-09-28 | h3
  52.     3 | 6ea55fe46f2119f084edd66abe486d91 | 2017-08-12 | h4
  53.     4 | 094b16011f0e9b34c878caa7d95e067f | 2017-08-13 | h4
  54.     7 | c916c264c77ba90b3463143b9513bc15 | 2017-08-16 | h4
  55.    10 | d333ce15f3a8d01a39df9ae317bf64b7 | 2017-08-19 | h4
  56.    16 | b136e8466bbafc58f917e14919b1edf1 | 2017-08-25 | h4
  57.    18 | 6c3fb7b3e473f793575407299006e6a3 | 2017-08-27 | h4
  58.    20 | bac12655b2d54855c58d19c9facc1579 | 2017-08-29 | h4
  59.    24 | ebcafb42d26654eff04bb5f8b35fdd69 | 2017-09-02 | h4
  60.    25 | 494e25facb9fe46e00037c716e2052e7 | 2017-09-03 | h4
  61.    27 | 961b1728893e7f6d46ed827ee9b4809e | 2017-09-05 | h4
  62.    30 | ebf840a36af46cc3dd8f29c94013cb71 | 2017-09-08 | h4
  63.    32 | 7c5083fed360079bcbc23c6ee803a4d6 | 2017-09-10 | h4
  64.    33 | 707e98eac5ba349c80df6f9d8f062676 | 2017-09-11 | h4
  65.    37 | e1cb546e66cd45b00441493100fb7752 | 2017-09-15 | h4
  66.    39 | 0bfa7e7ccb00a477add00df4d0327c52 | 2017-09-17 | h4
  67.    47 | d894969c3cdbf00fe7dce9683c6f9a17 | 2017-09-25 | h4
  68.    48 | 09ca86c5e5bd87ba786533f34c4ebf25 | 2017-09-26 | h4
  69. (50 rows)
  70. yonj1e=# explain select * from h where h_id = 20;
  71. QUERY PLAN
  72. ----------------------------------------------------------
  73.  Append  (cost=0.00..20.12 rows=4 width=72)
  74.    ->  Seq Scan on h4  (cost=0.00..20.12 rows=4 width=72)
  75.  Filter: (h_id = 20)
  76. (3 rows)
  77. yonj1e=# \d+ h*
  78.  Table "public.h"
  79.  Column |  Type   | Collation | Nullable | Default | Storage | Stats target | Description 
  80. --------+---------+-----------+----------+---------+---------+--------------+-------------
  81.  h_id   | integer |   |  | | plain   |  | 
  82.  h_name | name|   |  | | plain   |  | 
  83.  h_date | date|   |  | | plain   |  | 
  84. Partition key: HASH (h_id)
  85. Partitions: h1 SERIAL NUMBER 0,
  86. h2 SERIAL NUMBER 1,
  87. h3 SERIAL NUMBER 2,
  88. h4 SERIAL NUMBER 3
  89. Table "public.h1"
  90.  Column |  Type   | Collation | Nullable | Default | Storage | Stats target | Description 
  91. --------+---------+-----------+----------+---------+---------+--------------+-------------
  92.  h_id   | integer |   |  | | plain   |  | 
  93.  h_name | name|   |  | | plain   |  | 
  94.  h_date | date|   |  | | plain   |  | 
  95. Partition of: h SERIAL NUMBER 0
  96. Partition constraint: (h_id IS NOT NULL)
  97. Table "public.h2"
  98.  Column |  Type   | Collation | Nullable | Default | Storage | Stats target | Description 
  99. --------+---------+-----------+----------+---------+---------+--------------+-------------
  100.  h_id   | integer |   |  | | plain   |  | 
  101.  h_name | name|   |  | | plain   |  | 
  102.  h_date | date|   |  | | plain   |  | 
  103. Partition of: h SERIAL NUMBER 1
  104. Partition constraint: (h_id IS NOT NULL)
  105. Table "public.h3"
  106.  Column |  Type   | Collation | Nullable | Default | Storage | Stats target | Description 
  107. --------+---------+-----------+----------+---------+---------+--------------+-------------
  108.  h_id   | integer |   |  | | plain   |  | 
  109.  h_name | name|   |  | | plain   |  | 
  110.  h_date | date|   |  | | plain   |  | 
  111. Partition of: h SERIAL NUMBER 2
  112. Partition constraint: (h_id IS NOT NULL)
  113. Table "public.h4"
  114.  Column |  Type   | Collation | Nullable | Default | Storage | Stats target | Description 
  115. --------+---------+-----------+----------+---------+---------+--------------+-------------
  116.  h_id   | integer |   |  | | plain   |  | 
  117.  h_name | name|   |  | | plain   |  | 
  118.  h_date | date|   |  | | plain   |  | 
  119. Partition of: h SERIAL NUMBER 3
  120. Partition constraint: (h_id IS NOT NULL)
  121. yonj1e=#  

HASH分区语法还不支持,以后或许会支持。

当前题目:PostgreSQL10分区表探密
分享链接:http://www.gawzjz.com/qtweb/news3/205953.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联