I'm new to Hbase. Need help, I have a table with some data in Hbase.
Id Name Address
1 john XX-XX
2 mike XXX-XX
and Id
should auto increment. Now I have to insert data into the table like if we insert 10 records the Id
should increment to 12 like
Id Name Address
1 john XX-XX
2 mike XXX-XX
3 foo XXXX
...
...
12 booo xxx
May be think of sequence generator in Hbase. Can someone help me with code.