如果你已经安装了 HBase 的 Python 客户端库 (Thrift API),比如 happybase,你可以这样写代码实现遍历一个 HBase 表中的数据:
import happybase# 连接 HBase 服务器
connection = happybase.Connection(host='localhost', port=9090)
# 打开第一个表
table1 = connection.table('table1')
# 遍历第一个表的每一行数据
for row_key, data in table1.scan():
# 获取字段值