I m trying to export all the data from HBase Shell to a text file using shell script
I am wanting to look into a particular column in hbase and do a count of transactions that occurred and print the number in the shell script .
I am currently using the following command for exporting the data,
echo "scan 'registration',{COLUMNS=>'registration:status'}" | hbase shell | grep "^ " > registration.txt
I want to know how to do for all the columns in the particular RowID and only the values of the column
PS: I have already went thru the link below for doing for a single column, I would like to know how I can do it for all the columns in a single command
Export data from HBase shell