hbase-python
hbase-python copied to clipboard
hbase-python is a pure python package used to access HBase.
currently I used this to get the table which have been granted the ACL from hbase cluster, it raise the exception : hbase.exceptions.RequestError: org.apache.hadoop.hbase.security.AccessDeniedException. It seems that now this package...
Fix occur to unknown ProtobufProtocol bug Use ScanRequest replace GetRequest fixed to use the new protocol.
as title, ZK path cannot be customized. my cluster hbase has a customed path.
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()...
While importing HBase from hbase, i am getting this error: File "C:\Users\anarayan\Anaconda3\lib\site-packages\IPython\core\interactiveshell.py", line 3437, in run_code exec(code_obj, self.user_global_ns, self.user_ns) File "", line 5, in from hbase import Hbase File "C:\Users\anarayan\Anaconda3\lib\site-packages\hbase\Hbase.py",...
It doesn't look like this repo is actively maintained.. but I'm filing this anyway. Who knows, maybe someone will pick it up in the future. The HBase java api lets...
Is it possible to add filters like SingleColumnValueFilter in scan() method ? If so,how to specify that parameter
The release doesn't include the changes to the setup.py requirements that were added [here](https://github.com/3601314/hbase-python/commit/f2b6a2b3191cd12ca2d323a51f6391399591c345). This means that after installing, if you try to `import hbase` you get an error about...
I got hbase.exceptions.RequestError: Failed to get region exception when tried to do `get` operation from the table located in the default namespace. Here is my code: ``` with hbase.ConnectionPool(zk).connect() as...