美文网首页
Hive数据导出

Hive数据导出

作者: 发条香蕉 | 来源:发表于2016-08-30 20:33 被阅读0次

    Hive数据导出

    • 导出方式
      • Hadoop命令方式
        • Get (hadoop fs -get /warehouse/test/* /home/data)
        • text (hadoop fs -text /warehouse/test/* > /home/data)
      • 通过INSERT...DIRECTORY方式
        • insert overwrite [local] directory '/tmp/ca_employees' [row format delimited fields terminated by '\t']
          select name,salary,address from employees
        • Shell命令加管道:hive -f/e |sed/grep/awk >file
          • hive -S -e "select * from test" | grep wer
        • 第三方工具

    相关文章

      网友评论

          本文标题:Hive数据导出

          本文链接:https://www.haomeiwen.com/subject/sncqettx.html