GOOGLE COLAB 中的 PIG 和 HIVE 查询

问题描述 投票:0回答:1

有什么方法可以在谷歌colab中编写配置单元查询和猪拉丁脚本吗?

python google-colaboratory apache-pig hiveql
1个回答
0
投票

对于 Hive 是的,导入必要的库并使用 Python 执行 Hive 查询。

例如。

安装库:

pip install thrift
pip install thrift-sasl
pip install PyHive

然后在Python中

from pyhive import hive    # note lower case pyhive
conn = hive.Connection(host="ahostsomewhere", port=a_port, username="a_username")  # define a_port

建立连接 (conn) 后,您可以使用 Python 创建游标并嵌入 Hive 查询。

© www.soinside.com 2019 - 2024. All rights reserved.