かつのりの日記2

わんくまでは珍しいJavaを中心とした日記です

目次

Blog 利用状況

書庫

日記カテゴリ

いろいろリンク

PostgreSQLでパーティショニング

久々の投稿です。最近PostgreSQLばっかりやっているので、ちょっとしたTipsでも書こうかなと思います。

PostgreSQLで大規模なDWHを構築しようとした場合に、データファイルとストレージの容量の問題に悩まされます。数億オーダーのレコードが想定されるならば、気軽にPostgreSQLを使うとはいいにくいのではないでしょうか。素直にOracleとかを使えばよいのですが、そうもなかなか言ってられません。そこでテーブルのパーティショニングでデータファイルを分散化し、分散されたデータファイルを別ストレージに追いやる方法についてまとめてみます。

(今手元に動くPostgreSQLがないので、下のコードにバグがあったら後日直します・・・。)

まずは、何を格納するかについてですが、アクセスログを格納するという感じでテーブル設計してみましょう。(実際の業務でも似たようなことを・・・ry)

まずはリクエストテーブル(request)

物理名 論理名
request_id リクエストID serial8
timestamp リクエスト日時 timestamp
uri URI text
user_agent ユーザエージェント text
remote_host リモートホスト text

次にパラメータテーブル(parameter)

物理名 論理名
parameter_id パラメータID serial8
request_id リクエストID int8
timestamp リクエスト日時 timestamp
name パラメータ名 text
value text

というような感じになりました。そしてDDL。


create table request(
    request_id serial8 not null,
    timestamp timestamp not null default now(),
    uri text not null default '',
    user_agent text not null default '',
    remote_host text not null default '',
    primary key(request_id)
);
create table parameter(
    parameter_id serial8 not null
    request_id int8 not null default 0,
    timestamp timestamp not null default now(),
    name text not null default '',
    value text not null default '',
    primary key(parameter_id)
);


この時点では、まだインデックスや外部キーは不要です。

そして次にパーティショニングの戦略を考える必要がありますが、年月単位でパーティショニングを行ってみましょう。PostgreSQLでのパーティショニングは自動化されないので、テーブル継承と振り分けルールによって行うようにしてみましょう。

まずは表領域を作成します。(事前にpostgresユーザでディレクトリを作っておきましょう)


create tablespace log_space_200807 location '/var/local/pgsql/log_spaces/log_space_200807';


この表領域を利用する、リクエストテーブルを継承したテーブルを作成します。check(条件)という構文が出てきましたが、これはこのテーブルにはこの条件のレコードしか入らないという宣言です。以下の場合、タイムスタンプが2008年7月の日付のレコードしか入りません。


create table request_200807(
    check(
        '2008-07-01' <= timestamp and timestamp < '2008-08-01'
    )
)
inherits(request)
tablespace log_space_200807;

create index
ix_request_200807_1
on request_200807(request_id)
tablespace log_space_200807;

create index
ix_request_200807_2
on request_200807(timestamp, uri)
tablespace log_space_200807;


そしてパラメータテーブルを継承したテーブルを作成します。チェック制約は同様です。


create table parameter_200807(check(
        '2008-07-01' <= timestamp and timestamp < '2008-08-01'
    )
)
inherits(parameter)
tablespace log_space_200807;

create index
ix_parameter_200807_1
on parameter_200807(parameter_id)
tablespace log_space_200807;

create index
ix_parameter_200807_2
on parameter_200807(
request_id, name, timestamp)
tablespace log_space_200807;


ここでインデックスが出てきました。継承元にはデータを格納しない為インデックスは不要ですが、継承したテーブルはデータを格納するためインデックスが必要になります。そして外部キー制約を設定します。これも実際にデータを格納するテーブル同士で設定します。


alter table parameter_200807
add constraint fk_parameter_200807_1
foreign key(request_id) references
request_200807(request_id)
on delete cascade;


最後に振り分けルールを設定します。振り分けルールとは、あるテーブルにレコードが挿入されるとき、どのテーブルにレコードが挿入されるかというルールです。チェック制約と同じ条件が設定される事になりますが、PostgreSQLにはチェック制約と振り分けルールが同じであるかを検証するすべがありません。慎重に同じ条件を設定する必要があります。


create rule
    rl_request_200807_1 as
on insert to
    request
where
    ('2008-07-01' <= timestamp and timestamp < '2008-08-01')
do instead
insert into
    request_200807
values(
    new.request_id,
    new.timestamp,
    new.uri,
    new.user_agent,
    new.remote_host
);

create rule
    rl_parameter_200807_1 as
on insert to
    parameter
where
    ('2008-07-01' <= timestamp and timestamp < '2008-08-01')
do instead
insert into
    parameter_200807
values(
    new.parameter_id,
    new.request_id,
    new.timestamp,
    new.name,
    new.value
);


これでテーブルは以上です。次にサーバの設定で、constraint_exclusionをonにしておきましょう。レコードの検索条件にタイムスタンプが含まれる場合、関係のないテーブルは実行プランに含まれなくなります。

 

・・・と、非常に面倒なことになりますが、これはスクリプトを使って必要に応じて生成するのがオススメです。この構成を行った場合、通常のSQLはというと、request/parameterのテーブルに対して実行するだけでよくなります。年月のサフィックスが付いたテーブルを意識する必要はありません。

複数年月のテーブルを作成し、request/parameterに対してinsertを行ってから、以下のクエリを実行してみてください。キチンとテーブルがパーティショニングされていることが確認できると思います。


select * from request;

select * from only request;

select * from request_200807;

select * from only request_200807;

select * from request_200808;

select * from only request_200808;


で、最後に注意点になりますが、insertは年月付きの実テーブルへ行った方が早いです。ベンチマークしましたが、数倍は早いです。。。大量データのインサートは直接実テーブルを行うようにしましょう。

投稿日時 : 2008年7月3日 23:48

Feedback

# Hi there, yes this article is in fact fastidious and I have learned lot of things from it regarding blogging. thanks. 2021/08/28 17:00 Hi there, yes this article is in fact fastidious a

Hi there, yes this article is in fact fastidious and I have learned lot of things from it regarding blogging.
thanks.

# Hi there, yes this article is in fact fastidious and I have learned lot of things from it regarding blogging. thanks. 2021/08/28 17:01 Hi there, yes this article is in fact fastidious a

Hi there, yes this article is in fact fastidious and I have learned lot of things from it regarding blogging.
thanks.

# hello!,I really like your writing very so much! proportion we keep in touch extra about your article on AOL? I need an expert in this area to solve my problem. May be that's you! Having a look ahead to peer you. 2021/08/30 14:15 hello!,I really like your writing very so much! p

hello!,I really like your writing very so much!
proportion we keep in touch extra about your article on AOL?
I need an expert in this area to solve my problem.
May be that's you! Having a look ahead to peer you.

# hello!,I really like your writing very so much! proportion we keep in touch extra about your article on AOL? I need an expert in this area to solve my problem. May be that's you! Having a look ahead to peer you. 2021/08/30 14:16 hello!,I really like your writing very so much! p

hello!,I really like your writing very so much!
proportion we keep in touch extra about your article on AOL?
I need an expert in this area to solve my problem.
May be that's you! Having a look ahead to peer you.

# hello!,I really like your writing very so much! proportion we keep in touch extra about your article on AOL? I need an expert in this area to solve my problem. May be that's you! Having a look ahead to peer you. 2021/08/30 14:17 hello!,I really like your writing very so much! p

hello!,I really like your writing very so much!
proportion we keep in touch extra about your article on AOL?
I need an expert in this area to solve my problem.
May be that's you! Having a look ahead to peer you.

# hello!,I really like your writing very so much! proportion we keep in touch extra about your article on AOL? I need an expert in this area to solve my problem. May be that's you! Having a look ahead to peer you. 2021/08/30 14:18 hello!,I really like your writing very so much! p

hello!,I really like your writing very so much!
proportion we keep in touch extra about your article on AOL?
I need an expert in this area to solve my problem.
May be that's you! Having a look ahead to peer you.

# What's up to every single one, it's actually a good for me to pay a visit this website, it includes important Information. 2021/09/02 19:53 What's up to every single one, it's actually a goo

What's up to every single one, it's actually a good for me to
pay a visit this website, it includes important Information.

# Good web site you've got here.. It's difficult to find quality writing like yours nowadays. I truly appreciate people like you! Take care!! 2021/09/06 1:01 Good web site you've got here.. It's difficult to

Good web site you've got here.. It's difficult to find quality writing like yours nowadays.
I truly appreciate people like you! Take care!!

# Good web site you've got here.. It's difficult to find quality writing like yours nowadays. I truly appreciate people like you! Take care!! 2021/09/06 1:02 Good web site you've got here.. It's difficult to

Good web site you've got here.. It's difficult to find quality writing like yours nowadays.
I truly appreciate people like you! Take care!!

# Good web site you've got here.. It's difficult to find quality writing like yours nowadays. I truly appreciate people like you! Take care!! 2021/09/06 1:03 Good web site you've got here.. It's difficult to

Good web site you've got here.. It's difficult to find quality writing like yours nowadays.
I truly appreciate people like you! Take care!!

# Good web site you've got here.. It's difficult to find quality writing like yours nowadays. I truly appreciate people like you! Take care!! 2021/09/06 1:05 Good web site you've got here.. It's difficult to

Good web site you've got here.. It's difficult to find quality writing like yours nowadays.
I truly appreciate people like you! Take care!!

# It's a pity you don't have a donate button! I'd definitely donate to this superb blog! I guess for now i'll settle for book-marking and adding your RSS feed to my Google account. I look forward to new updates and will talk about this website with my Fac 2021/09/14 12:07 It's a pity you don't have a donate button! I'd de

It's a pity you don't have a donate button! I'd definitely donate to
this superb blog! I guess for now i'll settle for book-marking and adding
your RSS feed to my Google account. I look forward to new updates and will talk
about this website with my Facebook group. Talk soon! scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery

# It's a pity you don't have a donate button! I'd definitely donate to this superb blog! I guess for now i'll settle for book-marking and adding your RSS feed to my Google account. I look forward to new updates and will talk about this website with my Fac 2021/09/14 12:08 It's a pity you don't have a donate button! I'd de

It's a pity you don't have a donate button! I'd definitely donate to
this superb blog! I guess for now i'll settle for book-marking and adding
your RSS feed to my Google account. I look forward to new updates and will talk
about this website with my Facebook group. Talk soon! scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery

# It's a pity you don't have a donate button! I'd definitely donate to this superb blog! I guess for now i'll settle for book-marking and adding your RSS feed to my Google account. I look forward to new updates and will talk about this website with my Fac 2021/09/14 12:09 It's a pity you don't have a donate button! I'd de

It's a pity you don't have a donate button! I'd definitely donate to
this superb blog! I guess for now i'll settle for book-marking and adding
your RSS feed to my Google account. I look forward to new updates and will talk
about this website with my Facebook group. Talk soon! scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery

# It's a pity you don't have a donate button! I'd definitely donate to this superb blog! I guess for now i'll settle for book-marking and adding your RSS feed to my Google account. I look forward to new updates and will talk about this website with my Fac 2021/09/14 12:10 It's a pity you don't have a donate button! I'd de

It's a pity you don't have a donate button! I'd definitely donate to
this superb blog! I guess for now i'll settle for book-marking and adding
your RSS feed to my Google account. I look forward to new updates and will talk
about this website with my Facebook group. Talk soon! scoliosis surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery

# Its such as you learn my thoughts! You seem to understand so much approximately this, such as you wrote the e book in it or something. I think that you just could do with some p.c. to force the message home a bit, however other than that, that is magnif 2021/09/14 16:32 Its such as you learn my thoughts! You seem to und

Its such as you learn my thoughts! You seem to understand so much approximately this, such as you wrote the e book in it or something.
I think that you just could do with some p.c. to force the message home a
bit, however other than that, that is magnificent blog.

A great read. I will definitely be back. quest bars https://www.iherb.com/search?kw=quest%20bars quest
bars

# Its such as you learn my thoughts! You seem to understand so much approximately this, such as you wrote the e book in it or something. I think that you just could do with some p.c. to force the message home a bit, however other than that, that is magnif 2021/09/14 16:33 Its such as you learn my thoughts! You seem to und

Its such as you learn my thoughts! You seem to understand so much approximately this, such as you wrote the e book in it or something.
I think that you just could do with some p.c. to force the message home a
bit, however other than that, that is magnificent blog.

A great read. I will definitely be back. quest bars https://www.iherb.com/search?kw=quest%20bars quest
bars

# Its such as you learn my thoughts! You seem to understand so much approximately this, such as you wrote the e book in it or something. I think that you just could do with some p.c. to force the message home a bit, however other than that, that is magnif 2021/09/14 16:34 Its such as you learn my thoughts! You seem to und

Its such as you learn my thoughts! You seem to understand so much approximately this, such as you wrote the e book in it or something.
I think that you just could do with some p.c. to force the message home a
bit, however other than that, that is magnificent blog.

A great read. I will definitely be back. quest bars https://www.iherb.com/search?kw=quest%20bars quest
bars

# Its such as you learn my thoughts! You seem to understand so much approximately this, such as you wrote the e book in it or something. I think that you just could do with some p.c. to force the message home a bit, however other than that, that is magnif 2021/09/14 16:35 Its such as you learn my thoughts! You seem to und

Its such as you learn my thoughts! You seem to understand so much approximately this, such as you wrote the e book in it or something.
I think that you just could do with some p.c. to force the message home a
bit, however other than that, that is magnificent blog.

A great read. I will definitely be back. quest bars https://www.iherb.com/search?kw=quest%20bars quest
bars

# Usually I don't read post on blogs, but I wish to say that this write-up very compelled me to take a look at and do it! Your writing style has been surprised me. Thanks, very great article. https://parttimejobshiredin30minutes.wildapricot.org/ part time 2021/10/22 20:16 Usually I don't read post on blogs, but I wish to

Usually I don't read post on blogs, but I wish to say that this write-up very compelled me to take a look at
and do it! Your writing style has been surprised me. Thanks, very great article.
https://parttimejobshiredin30minutes.wildapricot.org/ part time jobs hired in 30
minutes

# Usually I don't read post on blogs, but I wish to say that this write-up very compelled me to take a look at and do it! Your writing style has been surprised me. Thanks, very great article. https://parttimejobshiredin30minutes.wildapricot.org/ part time 2021/10/22 20:17 Usually I don't read post on blogs, but I wish to

Usually I don't read post on blogs, but I wish to say that this write-up very compelled me to take a look at
and do it! Your writing style has been surprised me. Thanks, very great article.
https://parttimejobshiredin30minutes.wildapricot.org/ part time jobs hired in 30
minutes

# I got this web page from my pal who informed me about this web site and now this time I am browsing this website and reading very informative posts here. 2021/10/26 6:49 I got this web page from my pal who informed me ab

I got this web page from my pal who informed me about this
web site and now this time I am browsing this
website and reading very informative posts here.

# bimatoprost generic best price https://bimatoprostrx.com
best place to buy careprost
2021/12/13 16:14 Hksfnjkh

bimatoprost generic best price https://bimatoprostrx.com
best place to buy careprost

# stromectol drug http://stromectolabc.com/
ivermectin 8 mg 2022/02/07 18:14 Busjdhj

stromectol drug http://stromectolabc.com/
ivermectin 8 mg

# It's hard to find well-informed people on this subject, however, you seem like you know what you're talking about! Thanks 2022/03/25 8:30 It's hard to find well-informed people on this sub

It's hard to find well-informed people on this subject, however, you seem
like you know what you're talking about! Thanks

# It's hard to find well-informed people on this subject, however, you seem like you know what you're talking about! Thanks 2022/03/25 8:31 It's hard to find well-informed people on this sub

It's hard to find well-informed people on this subject, however, you seem
like you know what you're talking about! Thanks

# It's hard to find well-informed people on this subject, however, you seem like you know what you're talking about! Thanks 2022/03/25 8:32 It's hard to find well-informed people on this sub

It's hard to find well-informed people on this subject, however, you seem
like you know what you're talking about! Thanks

# It's hard to find well-informed people on this subject, however, you seem like you know what you're talking about! Thanks 2022/03/25 8:33 It's hard to find well-informed people on this sub

It's hard to find well-informed people on this subject, however, you seem
like you know what you're talking about! Thanks

# Penegra https://allpharm.store/ 2022/07/22 6:04 AllPharm

Penegra https://allpharm.store/

# top rated ed pills https://erectiledysfunctionpills.shop/ 2022/10/14 16:50 Erectile

top rated ed pills https://erectiledysfunctionpills.shop/

# prednisone cream brand name https://prednisone20mg.icu/ 2022/10/15 7:24 Prednisone

prednisone cream brand name https://prednisone20mg.icu/

# asien dating online https://topdatingsites.fun/
our time dating website 2022/11/14 17:32 DatingTop

asien dating online https://topdatingsites.fun/
our time dating website

# prednisone https://prednisone20mg.site/
prednisone 300mg 2022/11/15 11:18 Prednisone

prednisone https://prednisone20mg.site/
prednisone 300mg

# prednisone 5mg coupon https://prednisonepills.site/
10mg prednisone daily 2022/11/28 17:05 Prednisone

prednisone 5mg coupon https://prednisonepills.site/
10mg prednisone daily

# top sites dating https://datingsiteonline.site/
dating sites for singles 2022/12/05 17:33 Tading

top sites dating https://datingsiteonline.site/
dating sites for singles

# men dating sites https://datingonlinehot.com/
personals dating 2022/12/09 12:12 Dating

men dating sites https://datingonlinehot.com/
personals dating

# free local personals https://datingonline1st.com/
dating seiten in schweiz 2023/01/17 17:44 Dating

free local personals https://datingonline1st.com/
dating seiten in schweiz

# Get here. Long-Term Effects.
https://edonlinefast.com
earch our drug database. earch our drug database. 2023/02/17 3:00 EdOnline

Get here. Long-Term Effects.
https://edonlinefast.com
earch our drug database. earch our drug database.

# earch our drug database. Read information now.
https://edonlinefast.com
Read now. Generic Name. 2023/02/17 14:16 EdOnline

earch our drug database. Read information now.
https://edonlinefast.com
Read now. Generic Name.

# cytotec buy online usa - https://cytotecsale.pro/# 2023/04/28 13:20 Cytotec

cytotec buy online usa - https://cytotecsale.pro/#

# strongest over the counter muscle relaxer https://overthecounter.pro/# 2023/05/08 13:08 OtcJikoliuj

strongest over the counter muscle relaxer https://overthecounter.pro/#

# list of canadian pharmacies https://pillswithoutprescription.pro/# 2023/05/15 22:28 PillsPro

list of canadian pharmacies https://pillswithoutprescription.pro/#

# best non prescription ed pills https://edpillsotc.store/# - ed pills for sale 2023/10/07 16:15 EdPills

best non prescription ed pills https://edpillsotc.store/# - ed pills for sale

# plavix best price https://plavix.guru/ Plavix 75 mg price 2023/10/23 16:57 Plavixxx

plavix best price https://plavix.guru/ Plavix 75 mg price

# paxlovid for sale https://paxlovid.bid/ paxlovid price 2023/10/25 12:15 Paxlovid

paxlovid for sale https://paxlovid.bid/ paxlovid price

# doxylin https://doxycycline.forum/ doxycycline tetracycline 2023/11/25 4:02 Doxycycline

doxylin https://doxycycline.forum/ doxycycline tetracycline

# buying prednisone https://prednisone.bid/ prednisone 10mg 2023/12/27 2:41 Prednisone

buying prednisone https://prednisone.bid/ prednisone 10mg

タイトル
名前
Url
コメント