当前位置:   article > 正文

Hive分区修复命令MSCK使用1_hive修复分区表命令

hive修复分区表命令
场景:
如果事先建立了一张分区表,然后手动(比如使用 cp 或者 mv )将分区数据拷贝到刚刚新建的表进行数据初始化;但是对于分区表,需要在hive里面手动将刚刚初始化的数据分区加入到hive里面,这样才能够查询使用。通常的做法是使用 alter table add partition命令手动添加分区;但是如果初始化的分区太多,这样一条一条地手动添加分区不免过于麻烦(虽然可以写个脚本生成添加分区的命令)。
这时候,MSCK命令就派上用场了。
语法:
MSCK REPAIR TABLE table_name;
执行后,Hive会检测如果HDFS目录下存在但表的metastore中不存在的partition元信息,更新到metastore中。
实例:
1、建表
  1. CREATE TABLE `xxxxxx_uid_online`(
  2. `datehour` string,
  3. `halfhourtype` string,
  4. `uid` string,
  5. `roomid` string,
  6. `roomcreatoruid` string,
  7. `staytime` string)
  8. PARTITIONED BY (
  9. `pt_day` string)
  10. ROW FORMAT SERDE
  11. 'org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe'
  12. STORED AS INPUTFORMAT
  13. 'org.apache.hadoop.mapred.TextInputFormat'
  14. OUTPUTFORMAT
  15. 'org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat'
  16. LOCATION
  17. 'hdfs://emr-cluster/user/hive/warehouse/xxxxxx_uid_online'
  18. TBLPROPERTIES (
  19. 'transient_lastDdlTime'='1516865482')
2、查看分区信息
  1. hive> show partitions xxxxxx_uid_online;
  2. OK
  3. Time taken: 0.048 seconds
3、复制数据
  1. hadoop distcp hdfs://10.28.28.177:9000/user/hive/warehouse/xxxxxx_uid_online/2018-01-01 hdfs://emr-cluster/user/hive/warehouse/xxxxxx_uid_online/pt_day=2018-01-01
  2. hadoop distcp hdfs://10.28.28.177:9000/user/hive/warehouse/xxxxxx_uid_online/2017-12-31 hdfs://emr-cluster/user/hive/warehouse/xxxxxx_uid_online/pt_day=2017-12-31
  3. hadoop distcp hdfs://10.28.28.177:9000/user/hive/warehouse/xxxxxx_uid_online/2017-12-30 hdfs://emr-cluster/user/hive/warehouse/xxxxxx_uid_online/pt_day=2017-12-30
  4. hadoop distcp hdfs://10.28.28.177:9000/user/hive/warehouse/xxxxxx_uid_online/2017-12-29 hdfs://emr-cluster/user/hive/warehouse/xxxxxx_uid_online/pt_day=2017-12-29
  5. hadoop distcp hdfs://10.28.28.177:9000/user/hive/warehouse/xxxxxx_uid_online/2017-12-28 hdfs://emr-cluster/user/hive/warehouse/xxxxxx_uid_online/pt_day=2017-12-28
4、执行修复命令
  1. hive> MSCK REPAIR TABLE xxxxxx_uid_online;
  2. OK
  3. Partitions not in metastore: xxxxxx_uid_online:pt_day=2017-12-28 xxxxxx_uid_online:pt_day=2017-12-29 xxxxxx_uid_online:pt_day=2017-12-30 xxxxxx_uid_online:pt_day=2017-12-31
  4. Repair: Added partition to metastore xxxxxx_uid_online:pt_day=2017-12-28
  5. Repair: Added partition to metastore xxxxxx_uid_online:pt_day=2017-12-29
  6. Repair: Added partition to metastore xxxxxx_uid_online:pt_day=2017-12-30
  7. Repair: Added partition to metastore xxxxxx_uid_online:pt_day=2017-12-31
  8. Time taken: 0.133 seconds, Fetched: 5 row(s)
如果目录格式不对,则会报错:
  1. hive> MSCK REPAIR TABLE xxxxxx_uid_online;
  2. FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.DDLTask
5、查看分区信息
  1. hive> show partitions xxxxxx_uid_online;
  2. OK
  3. pt_day=2017-12-28
  4. pt_day=2017-12-29
  5. pt_day=2017-12-30
  6. pt_day=2017-12-31
  7. pt_day=2018-01-01
  8. Time taken: 0.039 seconds, Fetched: 5 row(s)
注意
为了让MSCK命令工作,分区的目录名必须是【 /partition_name=partition_value/】结构的( 且表级目录中不得存在非此种格式的目录名),否则将无法添加分区。这时候就必须使用add partition命令了。
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/538600
推荐阅读
相关标签
  

闽ICP备14008679号