hgromer commented on code in PR #6370: URL: https://github.com/apache/hbase/pull/6370#discussion_r1827827790
########## hbase-backup/src/main/java/org/apache/hadoop/hbase/backup/impl/IncrementalTableBackupClient.java: ########## @@ -437,6 +445,29 @@ protected void walToHFiles(List<String> dirPaths, List<String> tableList) throws } } + private void incrementalCopyBulkloadHFiles(FileSystem tgtFs, TableName tn) throws IOException { + Path bulkOutDir = getBulkOutputDirForTable(tn); + FileSystem fs = FileSystem.get(conf); + + if (fs.exists(bulkOutDir)) { + conf.setInt(MapReduceBackupCopyJob.NUMBER_OF_LEVELS_TO_PRESERVE_KEY, 2); Review Comment: I was just following [prior art](https://github.com/apache/hbase/blob/c39412ad8eac414769d40492db7abd1cb676d5af/hbase-backup/src/main/java/org/apache/hadoop/hbase/backup/impl/IncrementalTableBackupClient.java#L248) here. We do unset this configuration after we're done with the incremental copy. -- 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