You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
236 B
15 lines
236 B
11 months ago
|
import happybase
|
||
|
|
||
|
# HBase的连接信息
|
||
|
hbase_host = '192.168.23.128'
|
||
|
|
||
|
hbase_table_name = 'bigdata'
|
||
|
|
||
|
# 创建HBase连接
|
||
|
connection = happybase.Connection(host=hbase_host)
|
||
|
|
||
|
print(connection.tables())
|
||
|
|
||
|
|
||
|
# 关闭连接
|
||
|
connection.close()
|