Greenplum table 之 appendonly的列存储表

 一、appendonly的列存储表

1、创建列存储表

create table test_column_ao(

id bigint,

name varchar(128),

value varchar(128),

)  with (appendonly=true,orientation=column,compresslevel=5)

distributed by (id);

Greenplum table 之 appendonly的列存储表_第1张图片

2、列存储表与普通appendonly压缩表性能比较

1)测试一

 Greenplum table 之 appendonly的列存储表_第2张图片

 

2)测试二

 

 Greenplum table 之 appendonly的列存储表_第3张图片

 

整理自:

《greenplum 企业级应用实战》

 

转载于:https://www.cnblogs.com/xibuhaohao/p/11127547.html

你可能感兴趣的:(Greenplum table 之 appendonly的列存储表)