php串連hive執行sql查詢

來源:互聯網
上載者:User

使用php串連hive的條件

1  需要安裝thrift  安裝步驟

#  ./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   如果開啟表示成功

 

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

php串連hive代碼

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

 

將以上代碼存為test.php到apache的www路徑/var/www/html/中  php串連hive的依賴包放到/var/www/html/hivephp/thrift/

php串連hive的lib包 http://download.csdn.net/source/3409880

開啟瀏覽器瀏覽http://localhost/test.php就可以看到查詢結果了

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.