Re: [HBase Restful] How to get a composite RowKey:

2015-02-02 Thread Nick Dimiduk
What is the rest service returning to you? It should be the base64 encoded value. You'll need to decode this value to get a byte[] with which you can operate. As for exactly how to parse it, that depends on how you created it in the first place. The section on REST in the community book [0] links

[HBase Restful] How to get a composite RowKey:

2015-01-20 Thread anil gupta
Hi, I want to fetch a row from hbase rest client. Composite Rowkey is: This is how the rowkey looks on hbase shell: ABCDEF\x00\x00\x00\x00\x01 I tried to do this request: hostname:8080/TABLE/ABCDEF%2Fx00%2Fx00%2Fx00%2F x00%2Fx01 Is it possible to get the this kind of row from Restful interface? I