当前位置:   article > 正文

Hive 动态分区 INSERT OVERWRIT_hive insert overwrite 动态分区

hive insert overwrite 动态分区

DML: 会按字段顺序插入,select出的前面的字段会放入非分区字段中,后面的几个字段则会写到分区字段中。

  1. use bdm;
  2. set mapred.output.compress=true;
  3. set hive.exec.compress.output=true;
  4. set mapred.output.compression.codec=com.hadoop.compression.lzo.LzopCodec;
  5. set hive.exec.dynamic.partition=true; -- 可以使用动态分区
  6. set hive.exec.dynamic.partition.mode=nonstrict; -- 所有分区字段都可以由查询得出。
  7. set hive.exec.max.dynamic.partitions=100000;
  8. set hive.exec.max.dynamic.partitions.pernode=100000;
  9. set hive.exec.reducers.bytes.per.reducer = 400000000;
  10. set hive.exec.parallel=true;
  11. set hive.auto.convert.join=true;
  12. set mapreduce.job.running.map.limit=50000;
  13. set yarn.app.mapreduce.am.command-opts=-Xmx8192m;
  14. set yarn.app.mapreduce.am.resource.mb=9216;
  15. set hive.lzo.paralle.read.index.thread = 50;
  16. INSERT OVERWRITE TABLE tmp.test_dym_par_1121 PARTITION (dt,data_type,dh)
  17. SELECT
  18. report_time
  19. ,'2019-11-21' as dt
  20. ,'TIME' a
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/秋刀鱼在做梦/article/detail/869796
推荐阅读
相关标签
  

闽ICP备14008679号