我无法远程连接服务配置单元。
我正在使用这个库
https://github.com/Automattic/php-thrift-sql
我的连接声明如下:
// Load this lib
require_once __DIR__ . '/ThriftSQL.phar';
// Try out a Hive query
$hive = new \ThriftSQL\Hive( 'cosmos.lab.fi-ware.org', 10000, 'myuser', 'myaccountpass');
$hiveTables = $hive
->connect()
->queryAndFetchAll( 'SHOW TABLES' );
print_r( $hiveTables );
但是调用会无限期地等待,直到超时。