1. 程式人生 > >Hive的分桶

Hive的分桶

creat table hive student from create tin string ble

含義:實質是將數據分成不同的文件。hive中的分桶和hadoop中的reduce個數相同。

  首先設置采用分桶:

    hive>set hive.enforce.bucketing=true;

    hive>create table buckets_users(id int,name string) clustered by (id) into 4 buckets;

    hive>insert overwrite table buckets_users select * from student;

      說明:按照ID分桶,分為4個桶,buckets_users 和 student表的字段要相同。

Hive的分桶