是否可以连接到hadoop并使用python3.x运行配置单元查询?我使用的是python3.4.1。我发现可以按照这里写的做:https://cwiki.apache.org/confluence/display/hive/hiveclient#hiveclient-Python但是,我无法安装配置单元模块,因为它说“找不到满足配置单元要求的版本”。
8e2ybdfx1#
如果安装了hiveserver2,则可以使用pyhs2。或者,如果您在本地执行脚本,则可以使用subprocess并捕获脚本的输出 hive -e your_query; .
hive -e your_query;
1条答案
按热度按时间8e2ybdfx1#
如果安装了hiveserver2,则可以使用pyhs2。或者,如果您在本地执行脚本,则可以使用subprocess并捕获脚本的输出
hive -e your_query;
.