hive创建orc表,使用LLAP查询

create table if not exists test_orc(

name string,

age int,

address string

) partitioned by (dt string)
STORED AS ORC;

 

set hive.execution.engine=tez;

set hive.llap.execution.mode=auto;

select * from test_orc;

 

你可能感兴趣的:(hive创建orc表,使用LLAP查询)