我正在尝试通过PHP中的Hive / Thrift查询数据库。但是,我经常收到错误:
TSocket: timed out reading 4 bytes from XYZ
我正在使用
中的代码https://cwiki.apache.org/Hive/hiveclient.html#HiveClient-PHP
以及这个PHP Thrift客户端
https://github.com/garamon/php-thrift-hive-client
我的代码:
<?php
$socket = new TSocket( 'XYZ', 12345 );
$socket->setSendTimeout(30 * 1000);
$socket->setRecvTimeout(30 * 1000);
$transport = new TBufferedTransport( $socket, 1024, 1024 );
$protocol = new TBinaryProtocol( $transport );
$client = new ThriftHiveClientEx( $protocol );
$transport->open();
$client->execute("my query");
?>
注意 - 我可以通过控制台(telnet命令)连接XYZ。
我会赞美任何帮助。感谢。
答案 0 :(得分:2)
当从那些完全相同的资源开始时,我遇到了类似的问题。事实证明,代码无法识别它是否已超时或是否阻塞端口。我找到了这篇帮助我的文章:
https://issues.apache.org/jira/browse/THRIFT-347
在您的TSocket.php代码(garamon_base_dir / lib / transport)中,您必须编辑大约223到236行。
它说:
if( $buf === FALSE || $buf === '' ) { ...
and
if( $md['timed_out'] ) { ...
and then again
if( $md[timed_out'] ) { ...
改为(分别):
if( $buf === FALSE ) { ...
and
if( true === $md['timed_out'] && false === $md['blocked'] )
and finally
if( true === $md['timed_out'] && false === $md['blocked'] )
然后它在此修复后开始工作。祝你好运!