The hbase writes the record updates (for a row key RK1) to Hfile. However one of the older Hfile will contain references to this rowkey RK1. How and when is this older reference to this RK1 invalidated ?
Assume there is Hfile containing the record for rowkey RK1. Then this RK1 is updated which means this update is written to a new HFile. The older Hfile containing reference the RK1 must be invalidated. How and when is this done in Hbase ?
Thanks.