hive表之bucket

create table xt_student_bucket(id INT, age INT, name STRING)
partitioned by(stat_date STRING)
clustered by(id) sorted by(age) into 2 buckets
row format delimited fields terminated by ',';

create table xt_student_1_bucket(id INT, age INT, name STRING)
partitioned by(stat_date STRING)
clustered by(id) sorted by(age) into 2 buckets
row format delimited fields terminated by ',';

bucket.txt
1,20,zxm
2,21,ljz
3,19,cds
4,18,mac
5,22,android
6,23,symbian
7,25,wp

LOAD DATA local INPATH 'bucket.txt' OVERWRITE INTO TABLE xt_student_1_bucket partition(stat_date='20150505');

set hive.enforce.bucketing = true; 
insert overwrite table xt_student_bucket partition(stat_date="20150505")
select id,age,name from xt_student_1_bucket where stat_date="20150505" sort by age;


你可能感兴趣的:(hive表之bucket)