使用php连接hive_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > 使用php连接hive

使用php连接hive

 2014/5/18 23:28:32  serisboy  程序员俱乐部  我要评论(0)
  • 摘要:使用php连接hive的条件1需要安装thrift安装步骤安装依赖库yuminstallautomakelibtoolflexbisonpkgconfiggcc-c++boost-devellibevent-develzlib-develpython-develruby-devel#./configure--without-ruby#make&&makeinstall如果没有安装libeventlibevent-devel的应该先安装这两个依赖库yum
  • 标签:PHP 使用 连接
使用php连接hive的条件

1  需要安装thrift  安装步骤

安装依赖库

class="java" name="code">yum install automake libtool flex bison pkgconfig gcc-c++ boost-devel libevent-devel zlib-devel python-devel ruby-devel


#  ./configure --without-ruby 

#   make && make install


如果没有安装libevent libevent-devel的应该先安装这两个依赖库yum -y install libevent libevent-devel

安装好后启动hive thrift

# ./hive --service hiveserver >/dev/null 2>/dev/null &


查看hiveserver默认端口是否打开10000   如果打开表示成功

 netstat -tnlp|grep :10000


注:php版本要求是5.2或者以上

php连接hive代码

<?  
  
// php连接hive thrift依赖包路径  
 $GLOBALS['THRIFT_ROOT'] = '/var/www/html/hivephp/thrift/';  
// load the required files for connecting to Hive  
require_once $GLOBALS['THRIFT_ROOT'] . 'packages/hive_service/ThriftHive.php';  
require_once $GLOBALS['THRIFT_ROOT'] . 'transport/TSocket.php';  
require_once $GLOBALS['THRIFT_ROOT'] . 'protocol/TBinaryProtocol.php';  
// Set up the transport/protocol/client  
$transport = new TSocket('localhost', 10000);  
$protocol = new TBinaryProtocol($transport);  
$client = new ThriftHiveClient($protocol);  
$transport->open();  
  
// run queries, metadata calls etc  
  
$client->execute('add jar /usr/local/hadoop/hive/lib/hive-contrib-0.7.0-cdh3u0.jar');  
$client->execute('select count(1) from apilog');  
var_dump($client->fetchAll());  
$transport->close();  
  
?>  



将以上代码存为test.php到apache的www路径/var/www/html/中  php连接hive的依赖包放到/var/www/html/hivephp/thrift/

php连接hive的lib包:见附件

打开浏览器浏览http://localhost/test.php就可以看到查询结果了
  • Thrift.zip (72 KB)
  • 下载次数: 0
发表评论
用户名: 匿名