ankitsol commented on code in PR #7166:
URL: https://github.com/apache/hbase/pull/7166#discussion_r2220943475


##########
hbase-backup/src/main/java/org/apache/hadoop/hbase/backup/impl/BackupSystemTable.java:
##########
@@ -457,8 +467,10 @@ public List<BulkLoad> readBulkloadRows(List<TableName> 
tableList) throws IOExcep
           String path = null;
           String region = null;
           byte[] row = null;
+          long timestamp = 0L;
           for (Cell cell : res.listCells()) {
             row = CellUtil.cloneRow(cell);
+            timestamp = cell.getTimestamp();

Review Comment:
   This timestamp is Bulkload timestamp (time at which Bulkload operation is 
triggered). This will be saved in backup system table and compared with 
`IncrCommittedWalTs` during incremental backup



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@hbase.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to