I want to write a value of 65 in hbase. I need to run the following command for the hbase shell:
put 'table','key','cf:qual','A'
But is there a way to write directly something like:
put 'table','key','cf:qual',65 (this is not allowed though)
Let me know if you understand the question, which I will talk more about.
Update:
By 65 I wanted to put "A", but the ascii value of "A" directly. The real problem for me is that I want to put values ββranging from 128 to 255 from the shell.
hbase
sethi
source share