bcolyn-ngdata commented on code in PR #5867: URL: https://github.com/apache/hbase/pull/5867#discussion_r1622633898
########## hbase-backup/src/test/java/org/apache/hadoop/hbase/backup/TestBackupMerge.java: ########## @@ -124,4 +128,43 @@ public void TestIncBackupMergeRestore() throws Exception { admin.close(); conn.close(); } + + @Test + public void TestIncBackupMergeRestoreSeparateFs() throws Exception { + + // prepare BACKUP_ROOT_DIR on a different filesystem from HBase + File tempDir = new File(FileUtils.getTempDirectory(), UUID.randomUUID().toString()); + tempDir.deleteOnExit(); Review Comment: Done. ########## hbase-backup/src/test/java/org/apache/hadoop/hbase/backup/TestBackupMerge.java: ########## @@ -124,4 +128,43 @@ public void TestIncBackupMergeRestore() throws Exception { admin.close(); conn.close(); } + + @Test + public void TestIncBackupMergeRestoreSeparateFs() throws Exception { + + // prepare BACKUP_ROOT_DIR on a different filesystem from HBase + File tempDir = new File(FileUtils.getTempDirectory(), UUID.randomUUID().toString()); + tempDir.deleteOnExit(); + BACKUP_ROOT_DIR = tempDir.toURI().toString(); + + Connection conn = ConnectionFactory.createConnection(conf1); Review Comment: Done. -- 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