python操作 hbase 数据的方法

作者:jingxian 时间:2022-07-21 15:46:51 

配置 thrift

python使用的包 thrift

个人使用的python 编译器是pycharm community edition. 在工程中设置中,找到project interpreter, 在相应的工程下,找到package,然后选择 “+” 添加, 搜索 hbase-thrift (Python client for HBase Thrift interface),然后安装包。

安装服务器端thrift。

参考官网,同时也可以在本机上安装以终端使用。

thrift Getting Started

也可以参考安装方法 python 调用HBase 范例

首先,安装thrift

下载thrift,这里,我用的是thrift-0.7.0-dev.tar.gz 这个版本

tar xzf thrift-0.7.0-dev.tar.gz
cd thrift-0.7.0-dev
sudo ./configure –with-cpp=no –with-ruby=no
sudo make
sudo make install

然后,到HBase的源码包里,找到

src/main/resources/org/apache/hadoop/hbase/thrift/

执行

thrift –gen py Hbase.thrift
mv gen-py/hbase/ /usr/lib/python2.4/site-packages/ (根据python版本可能有不同)

获取数据示例 1


# coding:utf-8

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 ColumnDescriptor, Mutation, BatchMutation
from hbase.ttypes import *

import csv

def client_conn():
# Make socket
transport = TSocket.TSocket('hostname,like:localhost', port)
# Buffering is critical. Raw sockets are very slow
transport = TTransport.TBufferedTransport(transport)
# Wrap in a protocol
protocol = TBinaryProtocol.TBinaryProtocol(transport)
# Create a client to use the protocol encoder
client = Hbase.Client(protocol)
# Connect!
transport.open()
return client

if __name__ == "__main__":

client = client_conn()

# r = client.getRowWithColumns('table name', 'row name', ['column name'])
# print(r[0].columns.get('column name')), type((r[0].columns.get('column name')))

result = client.getRow("table name","row name")
data_simple =[]

# print result[0].columns.items()

for k, v in result[0].columns.items(): #.keys()
 #data.append((k,v))
 # print type(k),type(v),v.value,,v.timestamp
 data_simple.append((v.timestamp, v.value))

writer.writerows(data)
csvfile.close()

csvfile_simple = open("data_xy_simple.csv", "wb")
writer_simple = csv.writer(csvfile_simple)
writer_simple.writerow(["timestamp", "value"])
writer_simple.writerows(data_simple)
csvfile_simple.close()

print "finished"

会基础的python应该知道result是个list,result[0].columns.items()是一个dict 的键值对。可以查询相关资料。或者通过输出变量,观察变量的值与类型。

说明:上面程序中 transport.open()进行链接,在执行完后,还需要断开transport.close()

目前只涉及到读数据,之后还会继续更新其他dbase操作。

标签:python,hbase,操作
0
投稿

猜你喜欢

  • 详解Python Flask框架的安装及应用

    2022-06-20 11:12:50
  • 15个Pythonic的代码示例(值得收藏)

    2022-07-27 21:21:19
  • MySQL DISTINCT 的基本实现原理详解

    2024-01-15 17:21:29
  • nlp计数法应用于PTB数据集示例详解

    2023-10-26 17:24:07
  • Python语法学习之进程间的通信方式

    2023-04-03 11:30:28
  • sqlserver 增删改查一些不常用的小技巧

    2024-01-24 06:49:59
  • vue基础语法之插值表达式详解

    2024-05-10 14:10:48
  • mysql中为用户设置密码的多种方法

    2024-01-26 07:36:07
  • Windows 8.1下MySQL5.7 忘记root 密码的解决方法

    2024-01-27 22:16:16
  • CASE表达式实现基于条件逻辑来返回一个值

    2024-01-19 23:18:45
  • Mysql Explain 详解

    2010-12-03 16:09:00
  • 使用pd.merge表连接出现多余行的问题解决

    2023-08-25 11:34:24
  • Python减少循环层次和缩进的技巧分析

    2023-10-07 21:41:09
  • Python 阶乘详解

    2022-01-16 13:56:00
  • 设计哲学与跨界

    2009-08-18 12:25:00
  • pandas DataFrame运算的实现

    2021-06-02 21:08:22
  • Python爬虫新手入门之初学lxml库

    2021-11-19 07:16:29
  • Win10安装dlib GPU过程详解

    2023-12-27 08:50:08
  • php防止sql注入代码实例

    2023-08-15 21:17:21
  • Python使用add_subplot与subplot画子图操作示例

    2022-12-15 13:14:28
  • asp之家 网络编程 m.aspxhome.com