hgromer commented on code in PR #6506:
URL: https://github.com/apache/hbase/pull/6506#discussion_r2027549923


##########
hbase-backup/src/main/java/org/apache/hadoop/hbase/backup/impl/BackupSystemTable.java:
##########
@@ -420,7 +421,8 @@ public void registerBulkLoad(TableName tableName, byte[] 
region,
    * @param rows the row keys of the entries to be deleted
    */
   public void deleteBulkLoadedRows(List<byte[]> rows) throws IOException {
-    try (BufferedMutator bufferedMutator = 
connection.getBufferedMutator(bulkLoadTableName)) {
+    try (BufferedMutator bufferedMutator = connection
+      .getBufferedMutator(new 
BufferedMutatorParams(bulkLoadTableName).setMaxMutations(1000))) {

Review Comment:
   Ah good to know, so the only thing needed is for the operator to specify the 
HMaster's configuration in the Connection object that is passed to the 
BackupAdminImp
   
   👍 



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to