I want to store multiple versions of a row which has the same family: qualifier but different value and timestamps.
Put put = new Put(Bytes.toBytes(key));
put.add(family, qualifier,timestamp0, value0);
put.add(family, qualifier,timestamp1, value1);
table.put(put);
However, only one of them which had the higher timestamp will be stored in the table. The issue is not because of MaxVersions. Is there any way I could have hbase to store both versions?