presto和hive将查询结果保存到本地的方法
Posted Lenskit
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了presto和hive将查询结果保存到本地的方法相关的知识,希望对你有一定的参考价值。
Insert overwrite LOCAL directory 'file:///xx/xx/xxx' ROW format delimited fields terminated BY "\\t"
上面是hive中将查询语句的结果插入到文件夹的方法。
presto的方法如下:
presto --server ip:port --catalog hive --schema default --execute "
这里放执行的语句
" --output-format CSV > /xx/xx/xxx/file_name
以上是关于presto和hive将查询结果保存到本地的方法的主要内容,如果未能解决你的问题,请参考以下文章