PostgreSQL11編譯支持JIT功能

JIT? just-in-time 即時編譯功能

創(chuàng)新互聯(lián)建站專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站、黎城網(wǎng)絡(luò)推廣、成都小程序開發(fā)、黎城網(wǎng)絡(luò)營銷、黎城企業(yè)策劃、黎城品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運(yùn)營等,從售前售中售后,我們都將竭誠為您服務(wù),您的肯定,是我們最大的嘉獎;創(chuàng)新互聯(lián)建站為所有大學(xué)生創(chuàng)業(yè)者提供黎城建站搭建服務(wù),24小時服務(wù)熱線:028-86922220,官方網(wǎng)址:muchs.cn

????JIT在大數(shù)據(jù)集的查詢條件下,可能迅速提升查詢速度的作用。但是它也不是任何情況下都能提效的,可以參考這篇??https://www.postgresql.org/docs/11/jit-decision.html

下面,我以編譯PG11開啟JIT為例演示下JIT的性能提升效果:

注意:JIT的功能需要在編譯的時候就開啟 jit的支持,PostgreSQL documentation 說明LLVM最低版本需要3.9

wget http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm

?

yum localinstall epel-release-latest-7.noarch.rpm

?

yum install llvm5.0 llvm5.0-devel clang

cd /root/pg_sources/postgresql-11? ??# 切換到pg11的源碼的路徑下,執(zhí)行編譯操作?

./configure --prefix=/usr/local/pgsql-11 \

--with-python --with-perl --with-tcl --with-pam \

--with-openssl --with-libxml --with-libxslt \

--with-llvm LLVM_CONFIG='/usr/lib64/llvm5.0/bin/llvm-config'

# 如果有缺少依賴包等報(bào)錯,可以參考網(wǎng)上的資料補(bǔ)充后,再次執(zhí)行 configure 命令。

?

修改配置文件,開啟JIT的參數(shù)。修改后,重啟PG,查看到的參數(shù)設(shè)置值如下:

postgres=# select name,setting from pg_settings where name like 'jit%';

????????? name?????????? | setting

-------------------------+---------

?jit???????????????????? | on

?jit_above_cost????????? | 100000

?jit_debugging_support?? | off

?jit_dump_bitcode??????? | off

?jit_expressions???????? | on

?jit_inline_above_cost?? | 500000

?jit_optimize_above_cost | 500000

?jit_profiling_support?? | off

?jit_provider??????????? | llvmjit

?jit_tuple_deforming???? | on

(10 rows)

?

德哥給出的測試樣例? https://github.com/digoal/blog/blob/master/201910/20191017_01.md

?

下面是我自己實(shí)際測試的(CenOS7+PG11+普通SATA硬盤,PG就設(shè)置了shared_buffer=8GB?沒有做其它的參數(shù)優(yōu)化,直接開搞)


造些測試數(shù)據(jù):

create table a(id int, info text, crt_Time timestamp, c1 int);?

insert into a select generate_series(1,100000000),'test',now(),random()*100;? ?--也不加索引了,純靠PG自己來硬抗

analyze a;?

?

\dt+ a

??????????????????? List of relations

?Schema | Name | Type? |? Owner ??|? Size?? | Description

--------+------+-------+----------+---------+-------------

?public | a??? | table | postgres | 5746 MB |

(1 row)

?

?

?

在開啟jit的PG11上的效果:

set jit=on;?

set max_parallel_workers_per_gather =32;?

alter table a set (parallel_workers =32);?

set min_parallel_table_scan_size =0;?

set min_parallel_index_scan_size =0;?

set parallel_setup_cost =0;?

set parallel_tuple_cost =0;?

?

postgres=# select t1.c1,count(*) from a t1 join a t2 using (id) group by t1.c1;?

Time: 31402.562 ms (00:31.403)

?

postgres=# explain select t1.c1,count(*) from a t1 join a t2 using (id) group by t1.c1;?

???????????????????????????????????????????????? QUERY PLAN

------------------------------------------------------------------------------------------------------------

?Finalize GroupAggregate? (cost=1657122.68..1657229.70 rows=101 width=12)

?? Group Key: t1.c1

?? ->? Gather Merge? (cost=1657122.68..1657212.53 rows=3232 width=12)

???????? Workers Planned: 32

???????? ->? Sort? (cost=1657121.85..1657122.10 rows=101 width=12)

?????????????? Sort Key: t1.c1

?????????????? ->? Partial HashAggregate? (cost=1657117.48..1657118.49 rows=101 width=12)

???????????????????? Group Key: t1.c1

???????????????????? ->? Parallel Hash Join? (cost=817815.59..1641492.46 rows=3125004 width=4)

?????????????????????????? Hash Cond: (t1.id = t2.id)

?????????????????????????? ->? Parallel Seq Scan on a t1? (cost=0.00..766545.04 rows=3125004 width=8)

?????????????????????????? ->? Parallel Hash? (cost=766545.04..766545.04 rows=3125004 width=4)

???????????????????????????????? ->? Parallel Seq Scan on a t2? (cost=0.00..766545.04 rows=3125004 width=4)

?JIT:

?? Functions: 23

?? Options: Inlining true, Optimization true, Expressions true, Deforming true

(16 rows)

?

?

postgres=# select t1.c1,count(*) from a t1 join a t2 on (t1.id=t2.id and t1.c1=2 and t2.c1=2) group by t1.c1;

?c1 |? count?

----+---------

? 2 | 1000506

(1 row)

?

Time: 4780.824 ms (00:04.781)

?

postgres=# select * from a order by c1,id desc limit 10;

??? id??? | info |????????? crt_time????????? | c1

----------+------+----------------------------+----

?99999958 | test | 2019-10-18 09:22:32.391061 |? 0

?99999926 | test | 2019-10-18 09:22:32.391061 |? 0

?99999901 | test | 2019-10-18 09:22:32.391061 |? 0

?99999802 | test | 2019-10-18 09:22:32.391061 |? 0

?99999165 | test | 2019-10-18 09:22:32.391061 |? 0

?99999100 | test | 2019-10-18 09:22:32.391061 |? 0

?99998968 | test | 2019-10-18 09:22:32.391061 |? 0

?99998779 | test | 2019-10-18 09:22:32.391061 |? 0

?99998652 | test | 2019-10-18 09:22:32.391061 |? 0

?99998441 | test | 2019-10-18 09:22:32.391061 |? 0

(10 rows)

Time: 3317.480 ms (00:03.317)

?

postgres=# select c1,count(*) from a group by c1;?

Time: 5031.796 ms (00:05.032)

?

?

在未編譯jit的PG11上的效果:

postgres=# ?select t1.c1,count(*) from a t1 join a t2 using (id) group by t1.c1;?

Time: 71410.034 ms (01:11.410)

?

postgres=# explain? select t1.c1,count(*) from a t1 join a t2 using (id) group by t1.c1;

????????????????????????????????????????????????? QUERY PLAN

--------------------------------------------------------------------------------------------------------------

?Finalize GroupAggregate? (cost=6150282.43..6150308.02 rows=101 width=12)

?? Group Key: t1.c1

?? ->? Gather Merge? (cost=6150282.43..6150306.00 rows=202 width=12)

???????? Workers Planned: 2

???????? ->? Sort? (cost=6149282.41..6149282.66 rows=101 width=12)

?????????????? Sort Key: t1.c1

?????????????? ->? Partial HashAggregate? (cost=6149278.03..6149279.04 rows=101 width=12)

???????????????????? Group Key: t1.c1

???????????????????? ->? Parallel Hash Join? (cost=1835524.52..5940950.58 rows=41665490 width=4)

?????????????????????????? Hash Cond: (t1.id = t2.id)

?????????????????????????? ->? Parallel Seq Scan on a t1? (cost=0.00..1151949.90 rows=41665490 width=8)

?????????????????????????? ->? Parallel Hash? (cost=1151949.90..1151949.90 rows=41665490 width=4)

???????????????????????????????? ->? Parallel Seq Scan on a t2? (cost=0.00..1151949.90 rows=41665490 width=4)

(13 rows)

Time: 0.636 ms

?

?

postgres=# select t1.c1,count(*) from a t1 join a t2 on (t1.id=t2.id and t1.c1=2 and t2.c1=2) group by t1.c1;

?c1 |? count?

----+---------

? 2 | 1001209

(1 row)

Time: 9329.623 ms (00:09.330)

?

postgres=# select * from a order by c1,id desc limit 10;

??? id??? | info |????????? crt_time????????? | c1

----------+------+----------------------------+----

?99999518 | test | 2019-10-18 09:18:36.532469 |? 0

?99999088 | test | 2019-10-18 09:18:36.532469 |? 0

?99999016 | test | 2019-10-18 09:18:36.532469 |? 0

?99998987 | test | 2019-10-18 09:18:36.532469 |? 0

?99998899 | test | 2019-10-18 09:18:36.532469 |? 0

?99998507 | test | 2019-10-18 09:18:36.532469 |? 0

?99998142 | test | 2019-10-18 09:18:36.532469 |? 0

?99998107 | test | 2019-10-18 09:18:36.532469 |? 0

?99998050 | test | 2019-10-18 09:18:36.532469 |? 0

?99997437 | test | 2019-10-18 09:18:36.532469 |? 0

(10 rows)

Time: 6113.971 ms (00:06.114)

?

?

postgres=# select c1,count(*) from a group by c1;?

Time: 9868.117 ms (00:09.868)

?

?從上面的測試結(jié)果看,基本上, 對于大數(shù)據(jù)集的JOIN之類的復(fù)雜?查詢, 用了JIT后, 查詢速度在原有的基礎(chǔ)上再縮短至少一半。

日常的OLTP+OLAP需求,一套PG11全搞定。

?

網(wǎng)頁名稱:PostgreSQL11編譯支持JIT功能
轉(zhuǎn)載來源:http://muchs.cn/article12/pgojgc.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站設(shè)計(jì)公司網(wǎng)站收錄、搜索引擎優(yōu)化、商城網(wǎng)站、網(wǎng)站導(dǎo)航、外貿(mào)網(wǎng)站建設(shè)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

h5響應(yīng)式網(wǎng)站建設(shè)