Skip to content

Instantly share code, notes, and snippets.

@imfht
Created June 12, 2018 08:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imfht/3009c0198929b75ca20b28ff356e50c2 to your computer and use it in GitHub Desktop.
Save imfht/3009c0198929b75ca20b28ff356e50c2 to your computer and use it in GitHub Desktop.
hbase demo
#!/usr/bin/env python
# -*- coding: utf-8 -*-
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
class HbaseClient(object):
def __init__(self, host='localhost', port=9090):
transport = TTransport.TBufferedTransport(TSocket.TSocket(host, port))
protocol = TBinaryProtocol.TBinaryProtocol(transport)
self.client = Hbase.Client(protocol)
transport.open()
def get_tables(self):
"""
获取所有表
"""
return self.client.getTableNames()
def create_table(self, table, *columns):
"""
创建表
"""
self.client.createTable(table, map(lambda column: ColumnDescriptor(column), columns))
def put(self, table, row, columns, attributes=None):
"""
添加记录
@:param columns {"k:1":"11"}
"""
self.client.mutateRow(table, row, map(lambda (k,v): Mutation(column=k, value=v), columns.items()), attributes)
def scan(self, table, start_row="", columns=None, attributes=None):
"""
获取记录
"""
scanner = self.client.scannerOpen(table, start_row, columns, attributes)
while True:
r = self.client.scannerGet(scanner)
if not r:
break
yield dict(map(lambda (k, v): (k, v.value),r[0].columns.items()))
if __name__ == "__main__":
client = HbaseClient("127.0.0.1", 9090)
client.create_table("student", "name", "coruse")
print(client.get_tables())
client.put("student", "1", {"name:":"zhangsan", "coruse:art": "88", "coruse:math": "12"})
client.put("student", "2", {"name:":"lisi", "coruse:art": "90", "coruse:math": "100"})
client.put("student", "3", {"name:":"lisi2"})
for v in client.scan("student", columns=["name"]):
print(v)
for v in client.scan("student"):
print(v)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment