Hi Team, I'm using below code to read table from hbase
Configuration conf = HBaseConfiguration.create();
conf.set(TableInputFormat.INPUT_TABLE, "table1");
JavaPairRDD hBaseRDD = sc.newAPIHadoopRDD(
conf,
TableInputFormat.class,
ImmutableBytesWritable.class,
Result.class);
I got hBaseRDD. I'm not able to read the column values from hBaseRDD.
*Could you please let me know, how to read the column values from hBaseRDD?*
Thank you for your help.
Regards,
Rajesh
