Hi, I am trying to store a result that I got out of some scan into another Hbase table so that I can read it back via Get and reconstruct.
This is what I am doing.... 1. Result.getBytes().get() -- Get the byte[] and do a Put in HBase 2. Then do a get and read the bytes[] as new Result(new ImmutableBytesWritable(byte[])) Now when I try to read some value from this Result it's give me null. Wondering what I am doing worng Regards, Shahsikant
