使用php连接到hiveserver2

ekqde3dh  于 2021-05-29  发布在  Hadoop
关注(0)|答案(1)|浏览(512)

我需要使用hadoop中的数据在php应用程序中创建一个报告。我已在本地计算机中安装了hiveserver2。我尝试使用以下示例从php代码中找到连接hiveserver2的方法。
https://github.com/qwertymaniac/hive-hs2-php-thrift
https://github.com/dryangkun/php-hiveserver2
但他们中的任何一个都不适合我。我已经更改了hive-site.xml的配置,如下面第1个链接中所述。

<property>
<name>hive.server2.authentication</name>
<value>NOSASL</value>
<description>
  Expects one of [nosasl, none, ldap, kerberos, pam, custom]

当我在第一个链接中运行php文件时,出现以下错误。

Uncaught exception 'Thrift\Exception\TTransportException' with message 'TSocket: timed out reading 4 bytes from localhost:10000' in /Users/lazhcm10385/projects/hive/hive-hs2-php-thrift/thrift/Thrift/Transport/TSocket.php:274

请帮助我,如果有人有适当的文档连接到hiveserver2使用php。

lf3rwulv

lf3rwulv1#

我可以使用https://github.com/qwertymaniac/hive-hs2-php-thrift. 在更改配置单元服务器的配置后,我关闭了终端并再次打开,然后使用新打开的终端启动服务器。

相关问题