rainard

Results 1 issues of rainard

hbase 2.1.0 python 3.6 my code ``` import hbase zk = '172.25.33.230:2181,172.25.33.231:2181,172.25.33.232:2181' def test(): with hbase.ConnectionPool( zk ).connect() as conn: table = conn['hbase']['TraceV2'] table.count() exit() if __name__ == '__main__': test()...