1.hbase的版本是1.2.6。hbase必须启动thrift2服务。
2.客户端操作系统是ubuntu 16.04。python版本3.5
3.客户端 安装 thrift
3.1 官网
http://thrift.apache.org/
3.1 获取源码
git clone https://github.com/apache/thrift.git
3.2 编译
cd thrift
./bootstrap.sh
./configure --without-java --without-php --without-nodejs --without-go
make
make check ##测试,确认这里不报错
sudo make install
注意事项:bootsrap.sh结束后,输出信息包括本机支持哪些语言的thrift开发,不需要语言支持都要在./configure里面用without去掉,只留下对python的支持,否则可能会在后续带来编译错误。
3.4 pip3 install thrift
4. 下载 hbase 1.2.6
http://archive.apache.org/dist/hbase/1.2.6/hbase-1.2.6-src.tar.gz
解压缩,找到 thrift2对应的文件:
/home/bri/setup/hbase-1.2.6/hbase-thrift/src/main/resources/org/apache/hadoop/hbase/thrift2/hbase.thrift
5.创建一个py项目,目录是/home/bri/tmp/hbase-thrift2-py3
5.1 cd hbase-thrift2-py3
5.2 生成hbase接口