主頁 > 知識庫 > 淺談PostgreSQL表分區(qū)的三種方式

淺談PostgreSQL表分區(qū)的三種方式

熱門標(biāo)簽:Linux服務(wù)器 鐵路電話系統(tǒng) 網(wǎng)站排名優(yōu)化 AI電銷 呼叫中心市場需求 地方門戶網(wǎng)站 服務(wù)外包 百度競價排名

一、簡介

表分區(qū)是解決一些因單表過大引用的性能問題的方式,比如某張表過大就會造成查詢變慢,可能分區(qū)是一種解決方案。一般建議當(dāng)單表大小超過內(nèi)存就可以考慮表分區(qū)了。PostgreSQL的表分區(qū)有三種方式:

  • Range:范圍分區(qū);
  • List:列表分區(qū);
  • Hash:哈希分區(qū)。

本文通過示例講解如何進(jìn)行這三種方式的分區(qū)。

二、三種方式

為方便,我們通過Docker的方式啟動一個PostgreSQL。我們要選擇較高的版本,否則不支持Hash分區(qū),命令如下:

docker run -itd \

    --name pkslow-postgres \

    -e POSTGRES_DB=pkslow \

    -e POSTGRES_USER=pkslow \

    -e POSTGRES_PASSWORD=pkslow \

    -p 5432:5432 \

    postgres:13

2.1、Range范圍分區(qū)

先創(chuàng)建一張表帶有年齡,然后我們根據(jù)年齡分段來進(jìn)行分區(qū),創(chuàng)建表語句如下:

CREATE TABLE pkslow_person_r (
    age int not null,
    city varchar not null
) PARTITION BY RANGE (age);

這個語句已經(jīng)指定了按age字段來分區(qū)了,接著創(chuàng)建分區(qū)表:

create table pkslow_person_r1 partition of pkslow_person_r for values from (MINVALUE) to (10);
create table pkslow_person_r2 partition of pkslow_person_r for values from (11) to (20);
create table pkslow_person_r3 partition of pkslow_person_r for values from (21) to (30);
create table pkslow_person_r4 partition of pkslow_person_r for values from (31) to (MAXVALUE);

這里創(chuàng)建了四張分區(qū)表,分別對應(yīng)年齡是0到10歲、11到20歲、21到30歲、30歲以上。

接著我們插入一些數(shù)據(jù):

insert into pkslow_person_r(age, city) VALUES (1, 'GZ');
insert into pkslow_person_r(age, city) VALUES (2, 'SZ');
insert into pkslow_person_r(age, city) VALUES (21, 'SZ');
insert into pkslow_person_r(age, city) VALUES (13, 'BJ');
insert into pkslow_person_r(age, city) VALUES (43, 'SH');
insert into pkslow_person_r(age, city) VALUES (28, 'HK');

可以看到這里的表名還是pkslow_person_r,而不是具體的分區(qū)表,說明對于客戶端是無感知的。

我們查詢也一樣的:

但實(shí)際上是有分區(qū)表存在的:

而且分區(qū)表與主表的字段是一致的。

查詢分區(qū)表,就只能查到那個特定分區(qū)的數(shù)據(jù)了:

2.2、List列表分區(qū)

類似的,列表分區(qū)是按特定的值來分區(qū),比較某個城市的數(shù)據(jù)放在一個分區(qū)里。這里不再給出每一步的講解,代碼如下:

-- 創(chuàng)建主表
create table pkslow_person_l (
                          age int not null,
                          city varchar not null
) partition by list (city);

-- 創(chuàng)建分區(qū)表
CREATE TABLE pkslow_person_l1 PARTITION OF pkslow_person_l FOR VALUES IN ('GZ');
CREATE TABLE pkslow_person_l2 PARTITION OF pkslow_person_l FOR VALUES IN ('BJ');
CREATE TABLE pkslow_person_l3 PARTITION OF pkslow_person_l DEFAULT;

-- 插入測試數(shù)據(jù)
insert into pkslow_person_l(age, city) VALUES (1, 'GZ');
insert into pkslow_person_l(age, city) VALUES (2, 'SZ');
insert into pkslow_person_l(age, city) VALUES (21, 'SZ');
insert into pkslow_person_l(age, city) VALUES (13, 'BJ');
insert into pkslow_person_l(age, city) VALUES (43, 'SH');
insert into pkslow_person_l(age, city) VALUES (28, 'HK');
insert into pkslow_person_l(age, city) VALUES (28, 'GZ');

當(dāng)我們查詢第一個分區(qū)的時候,只有廣州的數(shù)據(jù):

2.3、Hash哈希分區(qū)

哈希分區(qū)是指按字段取哈希值后再分區(qū)。具體的語句如下:

-- 創(chuàng)建主表
create table pkslow_person_h (
                          age int not null,
                          city varchar not null
) partition by hash (city);

-- 創(chuàng)建分區(qū)表
create table pkslow_person_h1 partition of pkslow_person_h for values with (modulus 4, remainder 0);
create table pkslow_person_h2 partition of pkslow_person_h for values with (modulus 4, remainder 1);
create table pkslow_person_h3 partition of pkslow_person_h for values with (modulus 4, remainder 2);
create table pkslow_person_h4 partition of pkslow_person_h for values with (modulus 4, remainder 3);

-- 插入測試數(shù)據(jù)
insert into pkslow_person_h(age, city) VALUES (1, 'GZ');
insert into pkslow_person_h(age, city) VALUES (2, 'SZ');
insert into pkslow_person_h(age, city) VALUES (21, 'SZ');
insert into pkslow_person_h(age, city) VALUES (13, 'BJ');
insert into pkslow_person_h(age, city) VALUES (43, 'SH');
insert into pkslow_person_h(age, city) VALUES (28, 'HK');

可以看到創(chuàng)建分區(qū)表的時候,我們用了取模的方式,所以如果要創(chuàng)建N個分區(qū)表,就要取N取模。

隨便查詢一張分區(qū)表如下:

可以看到同是SZ的哈希值是一樣的,肯定會分在同一個分區(qū),而BJ的哈希值取模后也屬于同一個分區(qū)。

三、總結(jié)

本文講解了PostgreSQL分區(qū)的三種方式。

代碼請查看:https://github.com/LarryDpk/pkslow-samples

以上就是淺談PostgreSQL表分區(qū)的三種方式的詳細(xì)內(nèi)容,更多關(guān)于PostgreSQL表分區(qū)的資料請關(guān)注腳本之家其它相關(guān)文章!

您可能感興趣的文章:
  • PostgreSQL LIST、RANGE 表分區(qū)的實(shí)現(xiàn)方案
  • PostgreSQL 創(chuàng)建表分區(qū)
  • 淺析postgresql 數(shù)據(jù)庫 TimescaleDB 修改分區(qū)時間范圍
  • 利用python為PostgreSQL的表自動添加分區(qū)
  • 如何為PostgreSQL的表自動添加分區(qū)
  • 淺談PostgreSQL 11 新特性之默認(rèn)分區(qū)
  • PostgreSQL之分區(qū)表(partitioning)
  • PostgreSQL分區(qū)表(partitioning)應(yīng)用實(shí)例詳解
  • PostgreSQL教程(三):表的繼承和分區(qū)表詳解

標(biāo)簽:湖南 仙桃 衡水 湘潭 蘭州 崇左 黃山 銅川

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《淺談PostgreSQL表分區(qū)的三種方式》,本文關(guān)鍵詞  ;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 收縮
    • 微信客服
    • 微信二維碼
    • 電話咨詢

    • 400-1100-266