当我使用 python 来操作 hbase时,代码如下:
from thrift import Thrift
from thrift.transport import TSocket, TTransport
from thrift.protocol import TBinaryProtocol
from hbase import Hbase
from hbase import ttypes
transport = TSocket.TSocket('127.0.0.1', 9090)
#设置传输方式
transport = TTransport.TBufferedTransport(transport)
#设置传输协议
protocol = TBinaryProtocol.TBinaryProtocol(transport);
#确定客户端
client = Hbase.Client(protocol)
# 打开连接
transport.open()
#
# column = ttypes.ColumnDescriptor('name')
# client.createTable(tableName="test", columnFamilies=column)
# columns = ['name','coruse']
desc = ttypes.ColumnDescriptor(name="colNameTest1")
#创建(table, [列族们])
client.createTable('our_table1',[desc])
# client.createTable("student", map(lambda column: ttypes.ColumnDescriptor(column), columns))
print(client.getTableNames())
transport.close()
运行时出现
typeError: a bytes-like object is required, not 'str'
刚开始我以为是要求输入一个对象,最后百度后才发现原来 是 方法要求的是 bytes 型的参数,这时只要在 str 参数前加 b"str", 就可以了