RELATEED CONSULTING
相关咨询
选择下列产品马上在线沟通
服务时间:8:30-17:00
你可能遇到了下面的问题
关闭右侧工具栏

新闻中心

这里有您想知道的互联网营销解决方案
安装ApacheThrift网关到CentOS2

1、生成 python用的thrift模块

民权网站建设公司创新互联建站,民权网站设计制作,有大型网站制作公司丰富经验。已为民权成百上千提供企业网站建设服务。企业网站搭建\成都外贸网站建设要多少钱,请找那个售后服务好的民权做网站的公司定做!

thrift --gen py /src/main/resources/org/apache/hadoop/hbase/thrift/Hbase.thrift

(该路径是从hbase的源代码文件中来的)

这样会在当前路径生成一个gen-py路径

2、安装

cd gen-py/hbase

python *.py build

python *.py install

cd ..

cp-rhbase/usr/lib/python2.6/site-packages/

3、测试

python

from thrift import Thrift

from thrift.transport import TSocket

from thrift.transport import TTransport

from thrift.protocol import TBinaryProtocol

from hbase import Hbase

from hbase.ttypes import *

transport = TSocket.TSocket('192.168.137.101',9090)

transport = TTransport.TBufferedTransport(transport)

protocol = TBinaryProtocol.TBinaryProtocol(transport)

client = Hbase.Client(protocol)

transport.open()

scan = TScan()

tableName = 'ttable'

id = client.scannerOpenWithScan(tableName, scan, None)

result1 = client.scannerGetList(id, 10)

print result1

4、不要忘记启动thrift守护进程

./bin/hbase-daemon.sh start thrift


名称栏目:安装ApacheThrift网关到CentOS2
文章出自:http://sczitong.cn/article/ppjsec.html