Support Questions

Find answers, ask questions, and share your expertise
Announcements
Check out our newest addition to the community, the Cloudera Data Analytics (CDA) group hub.

HDP Spark Hbase Connector Cell Versions?

New Contributor

When reading an hbase table into a dataframe, is there a way to specify which cell version to get? Or will this alway be the most recent?

1 ACCEPTED SOLUTION

Explorer

Yes, you can specify which cell version to get. SHC users can select a timestamp, they can also select a time range with minimum timestamp and maximum timestamp (aka. retrieve multiple versions simultaneously). Please refer the test case here about how to do it.

View solution in original post

5 REPLIES 5

Super Guru

@Todd Niven

In your configuration, set the following and then use getColumnCells to get the version you want. Familiarize with Result.java from hbase client API which is probably what you are using.

conf.set("hbase.mapreduce.scan.maxversions", "VERSION_YOU_WANT")

New Contributor

Does this approach work with https://github.com/hortonworks-spark/shc ? I am hoping to retrieve multiple versions simultaneously.

Super Guru

Yes. I think it should. I have not done it specifically but I have used Result.java class so it should work as it is the same class. Here is how I have done it.

  // create hbase configuration

        Configuration configuration = HBaseConfiguration.create();

        configuration.addResource(new Path("/etc/hbase/conf/hbase-site.xml"));

        configuration.set(TableInputFormat.INPUT_TABLE, hbaseTableName);




        // create java hbase context

        JavaHBaseContext javaHBaseContext = new JavaHBaseContext(javaSparkContext, configuration);




        JavaPairRDD<ImmutableBytesWritable, Result> hbaseRDD =

                javaSparkContext.newAPIHadoopRDD(configuration, TableInputFormat.class, ImmutableBytesWritable.class, Result.class);




        JavaRDD<Row> rowJavaRDD = hbaseRDD.map(new Function<Tuple2<ImmutableBytesWritable, Result>, Row  >() {

            private static final long serialVersionUID = -2021713021648730786L;

            public Row  call(Tuple2<ImmutableBytesWritable, Result> tuple) throws Exception {




                Object[] rowObject = new Object[namearr.length];




                for (int i=0; i<namearr.length; i++) {

                    Result result = tuple._2;
                    // handle each data type we support
                    if (typesarr[i].equals("string")) {
                        String str = Bytes.toString(result.getValue(Bytes.toBytes(cfarr[i]), Bytes.toBytes(namearr[i])));
                        rowObject[i] = str;
                    }

                }

Expert Contributor

If this does not work for you please open the feature request by creating an issue on the github project for SHC. /cc @wyang

Explorer

Yes, you can specify which cell version to get. SHC users can select a timestamp, they can also select a time range with minimum timestamp and maximum timestamp (aka. retrieve multiple versions simultaneously). Please refer the test case here about how to do it.

Take a Tour of the Community
Don't have an account?
Your experience may be limited. Sign in to explore more.