一、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的列存储表_性能比较

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

1)测试一

Greenplum table 之 appendonly的列存储表_企业级应用_02


2)测试二

Greenplum table 之 appendonly的列存储表_企业级应用_03


Greenplum table 之 appendonly的列存储表_性能比较_04