I am trying to find a way to read an hbase query result into a tab separated text file.
Structure of hbase table people
:
12 column-name=name;value=John Smith
10 column-name=name;value=Jack Johnson
I want to output it in a text file which is created like this:
- 12(tab)John Smith
- 10(tab)Jack Johnson
Is there any tool available for this, like the export is available for outputting hbase to hdfs?