0
想從使用HappyBaseHappyBase - 不顯示結果
這裏蟒蛇連接到HBase的是我試圖
>import happybase
>connection = happybase.Connection(host = <myHost>,port = <myPort>)
<happybase.connection.Connection object at 0x7ff46c527bd0>
>connection.tables()
---> runs for real long time never ending <----
同樣的,當我試圖訪問一個表
>import happybase
>connection = happybase.Connection(host = <someHost>,port = <somePort>, autoconnect=False)
>connection.open()
>table = connection.table('myTable')
<happybase.table.Table name='myTable'>
>row = table.row('1234')
-----> Nothing shows up - takes forever <-------
代碼
有人可以幫助我瞭解發生了什麼問題。
順便說一句,現在用:
Java版本 「1.8.0_60」
的Java(TM)SE運行時環境(build1.8.0_60-B27)
的HotSpot的Java(TM)64位服務器VM(建25.60-B23,混合模式)
問候