Hi, I have a MapReduce job which creates a StoreFile which I can load using LoadIncrementalFiles in HBase. I am also using the timestamp component of the KeyValue in my mapper to maintain version in an custom manner. But when I am trying to overwrite the same version using the bulk import, it is not working. When I try to perform a git, it returns me to the old version.
Also, if I try to update a KeyValue by overwriting the timestamp in the hbase shell, I can see that the value is getting updated. eg. put 't1', 'r1', 'c1', 'value', ts1 Can someone help on why the updates are not reflecting when using bulk import ?
