作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想将Impala查询的结果上传到hdfs。我通过Impala shell执行查询:
impala-shell -B --output_delimiter=',' -o result.txt -q " select *
from my_table
where my_conditions"
...它在本地存储
result.txt
,然后将该文本文件上传到hdfs。
xrealloc: cannot allocate #######bytes ( ####bytes allocated) command result
我认为结果较大是原因。有什么方法可以将查询结果“直接”上传到hdfs?还是有其他解决方案?
最佳答案
正如@ koushik-roy在评论中提到的那样,将结果加载到HDFS的最佳方法是创建另一个Hive表。就像是
impala-shell -q "create table result_table as select * from my_table where my_conditions"
但是,如果只需要“普通文件”,则可以尝试将查询输出管道传递给
HDFS shell put
命令,如下所示:
impala-shell -B --out:put_delimiter=',' -q " select * from my_table where my_conditions" | hadoop fs -put - </your/hdfs/path/for/result>
请注意在shell命令中使用“从标准输入读取输入”选项(
-
)。
关于hadoop - 如何将impala查询输出上传到hdfs “directly”(在impala shell上)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64441291/
我是一名优秀的程序员,十分优秀!