欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

怎么安裝和使用Greenplum開源的列式存儲zedstore-創(chuàng)新互聯(lián)

本篇內(nèi)容介紹了“怎么安裝和使用Greenplum開源的列式存儲zedstore”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

目前成都創(chuàng)新互聯(lián)已為近1000家的企業(yè)提供了網(wǎng)站建設(shè)、域名、網(wǎng)絡(luò)空間、網(wǎng)站托管、服務(wù)器租用、企業(yè)網(wǎng)站設(shè)計、鄰水網(wǎng)站維護(hù)等服務(wù),公司將堅持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。

安裝
從Github上下載源碼,與普通PG一樣,編譯安裝即可

[root@localhost postgres-zedstore]# ./configure --enable-debug --with-python --with-perl --with-tcl --with-gssapi --with-pam --with-openssl --with-pam --without-ldap --with-libxml --with-libxslt --enable-dtrace --enable-depend --enable-cassert --with-systemd CFLAGS="-O0 -DOPTIMIZER_DEBUG -g3 -gdwarf-2" --prefix=/appdb/zedstore
checking build system type... x86_64-pc-linux-gnu
...
[root@localhost postgres-zedstore]# make -j4
...
[root@localhost postgres-zedstore]# make install
...
PostgreSQL installation complete.

Heap vs ZedStore
創(chuàng)建用戶,初始化數(shù)據(jù)庫

[zedstore@localhost ~]$ initdb -E utf8 -D /data/zedstore/testdb
The files belonging to this database system will be owned by user "zedstore".
This user must also own the server process.
The database cluster will be initialized with locale "en_US.UTF-8".
The default text search configuration will be set to "english".
Data page checksums are disabled.
creating directory /data/zedstore/testdb ... ok
creating subdirectories ... ok
selecting dynamic shared memory implementation ... posix
selecting default max_connections ... 100
selecting default shared_buffers ... 128MB
selecting default timezone ... PRC
creating configuration files ... ok
running bootstrap script ... ok
performing post-bootstrap initialization ... ok
syncing data to disk ... ok
initdb: warning: enabling "trust" authentication for local connections
You can change this by editing pg_hba.conf or using the option -A, or
--auth-local and --auth-host, the next time you run initdb.
Success. You can now start the database server using:
    pg_ctl -D /data/zedstore/testdb -l logfile start

下面來對比一下head am和zedstore的性能差異
Heap

testdb=# create table t_heap(id int,c1 int,c2 varchar(20));
CREATE TABLE                           
testdb=# insert into t_heap select x,x,'c2'||x from generate_series(1,5000000) as x;
INSERT 0 5000000
testdb=#

執(zhí)行查詢

testdb=# explain analyze select avg(id),sum(c1),max(c2) from t_heap;
                                                                  QUERY PLAN                                      
------------------------------------------------------------------------------------------------------------------
----------------------------
 Finalize Aggregate  (cost=69209.94..69209.95 rows=1 width=72) (actual time=964.313..964.314 rows=1 loops=1)
   ->  Gather  (cost=69209.71..69209.92 rows=2 width=72) (actual time=963.978..966.938 rows=3 loops=1)
         Workers Planned: 2
         Workers Launched: 2
         ->  Partial Aggregate  (cost=68209.71..68209.72 rows=1 width=72) (actual time=929.220..929.220 rows=1 loo
ps=3)
               ->  Parallel Seq Scan on t_heap  (cost=0.00..52584.55 rows=2083355 width=17) (actual time=0.094..25
6.014 rows=1666667 loops=3)
 Planning Time: 17.157 ms
 Execution Time: 968.461 ms
(8 rows)
testdb=#

執(zhí)行時間為968ms

空間占用

testdb=# select pg_size_pretty(pg_table_size('t_heap'));
 pg_size_pretty 
----------------
 248 MB
(1 row)

ZedStore

testdb=# create table t_zedstore(id int,c1 int,c2 varchar(20)) using zedstore;
CREATE TABLE                           
testdb=# insert into t_zedstore select x,x,'c2'||x from generate_series(1,5000000) as x;
INSERT 0 5000000
testdb=#

執(zhí)行查詢

testdb=# explain analyze select avg(id),sum(c1),max(c2) from t_zedstore;
                                                                   QUERY PLAN                                     
------------------------------------------------------------------------------------------------------------------
-------------------------------
 Finalize Aggregate  (cost=24917.50..24917.51 rows=1 width=72) (actual time=1341.238..1341.239 rows=1 loops=1)
   ->  Gather  (cost=24917.27..24917.48 rows=2 width=72) (actual time=1341.046..1343.387 rows=3 loops=1)
         Workers Planned: 2
         Workers Launched: 2
         ->  Partial Aggregate  (cost=23917.27..23917.28 rows=1 width=72) (actual time=1328.432..1328.432 rows=1 l
oops=3)
               ->  Parallel Seq Scan on t_zedstore  (cost=0.00..18968.87 rows=659787 width=17) (actual time=0.702.
.837.075 rows=1666667 loops=3)
 Planning Time: 0.643 ms
 Execution Time: 1343.612 ms
(8 rows)
testdb=#

使用zedstore的時間是1343ms,比起heap方式要慢接近40%。

空間占用

testdb=# select pg_size_pretty(pg_table_size('t_zedstore'));
 pg_size_pretty 
----------------
 97 MB
(1 row)
testdb=#

不過使用zedstore,空間占用倒是只有原來的40%左右。

“怎么安裝和使用Greenplum開源的列式存儲zedstore”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!

網(wǎng)站名稱:怎么安裝和使用Greenplum開源的列式存儲zedstore-創(chuàng)新互聯(lián)
本文來源:http://aaarwkj.com/article6/ddddig.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供商城網(wǎng)站、軟件開發(fā)、關(guān)鍵詞優(yōu)化服務(wù)器托管、App開發(fā)、小程序開發(fā)

廣告

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

成都做網(wǎng)站
亚洲女同另类在线播放视频| 97人妻人人揉人人澡人人学生| 欧美老熟妇精品一区二区| 国产原创剧情免费观看av| 99热这里只有精品在线| 午夜免费视频观看在线| 国产美女亚洲精品久久久| 成人激情视频在线网页| 国产夫妻性生活国产视频| 亚洲成人午夜激情在线| 亚洲一区二区三区精品国产| 97全国免费观看视频| 欧美日韩亚洲精品亚洲欧洲| 国产精品视频一区二区久久| 国产精品一区二区三区熟女| 精品一区无遮挡免费网站| 最新免费观看男女啪啪视频| 中文字幕国产精品一区二 | 中文字幕在线精品乱码| 深夜释放自己污在线看| 久亚洲精品九九久久99| 国产一区二区视频在线| 东京热加勒比在线播放| 中文字幕乱码人妻一区二| 亚洲天堂精品日韩电影| 人妻精品久久一区二区三区| 国产亚洲av看码精品永久| 亚洲日本一区二区一本一道| 日韩欧美乱码一区二区| 九九六热这里只有精品| 精品传媒国产在线观看| 日本 一区二区在线| 日本成人一区二区三区在线| 欧美日韩亚洲中文二区| 午夜射精视频在线观看| 国产自拍精品视频免费观看| 日本韩国亚洲欧美一区二区| 国产青草视频免观看视频| 欧美私人影院—区二区日本| 日韩欧美亚洲一区二区| 久久国产精品99亚洲|