Reputation: 186
A table scan [scan 'mytable']from hbase shell(ssh putty) is showing me correct values
But if I give a command from ssh, curl -H "Accept: application/json" http://localhost:54321/mytable/first/cf - it shows all the cells but data is coming as junk. eg: "Zmlyc3Q=" instead of "first" Note : I am using a hortonworks sandbox on a Vbox.
Upvotes: 0
Views: 181
Reputation: 3067
Everything retrieved from the REST API (row key, family, column and value) is base64-encoded, you have to decode it.
Pseudo-code:
base64("first") == "Zmlyc3Q="
Upvotes: 1