001/* 002 * Licensed to the Apache Software Foundation (ASF) under one 003 * or more contributor license agreements. See the NOTICE file 004 * distributed with this work for additional information 005 * regarding copyright ownership. The ASF licenses this file 006 * to you under the Apache License, Version 2.0 (the 007 * "License"); you may not use this file except in compliance 008 * with the License. You may obtain a copy of the License at 009 * 010 * http://www.apache.org/licenses/LICENSE-2.0 011 * 012 * Unless required by applicable law or agreed to in writing, software 013 * distributed under the License is distributed on an "AS IS" BASIS, 014 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 015 * See the License for the specific language governing permissions and 016 * limitations under the License. 017 */ 018package org.apache.hadoop.hbase.backup; 019 020import static org.junit.jupiter.api.Assertions.assertFalse; 021import static org.junit.jupiter.api.Assertions.assertTrue; 022 023import java.util.List; 024import java.util.Set; 025import org.apache.hadoop.hbase.TableName; 026import org.apache.hadoop.hbase.backup.impl.BackupSystemTable; 027import org.apache.hadoop.hbase.backup.impl.TableBackupClient; 028import org.apache.hadoop.hbase.backup.impl.TableBackupClient.Stage; 029import org.apache.hadoop.hbase.testclassification.LargeTests; 030import org.apache.hadoop.util.ToolRunner; 031import org.junit.jupiter.api.Tag; 032import org.junit.jupiter.api.Test; 033import org.slf4j.Logger; 034import org.slf4j.LoggerFactory; 035 036@Tag(LargeTests.TAG) 037public class TestBackupRepair extends TestBackupBase { 038 039 private static final Logger LOG = LoggerFactory.getLogger(TestBackupRepair.class); 040 041 @Test 042 public void testFullBackupWithFailuresAndRestore() throws Exception { 043 044 autoRestoreOnFailure = false; 045 046 conf1.set(TableBackupClient.BACKUP_CLIENT_IMPL_CLASS, 047 FullTableBackupClientForTest.class.getName()); 048 int maxStage = Stage.values().length - 1; 049 // Fail stage in loop between 0 and 4 inclusive 050 for (int stage = 0; stage < maxStage; stage++) { 051 LOG.info("Running stage " + stage); 052 runBackupAndFailAtStageWithRestore(stage); 053 } 054 } 055 056 public void runBackupAndFailAtStageWithRestore(int stage) throws Exception { 057 058 conf1.setInt(FullTableBackupClientForTest.BACKUP_TEST_MODE_STAGE, stage); 059 try (BackupSystemTable table = new BackupSystemTable(TEST_UTIL.getConnection())) { 060 int before = table.getBackupHistory().size(); 061 String[] args = new String[] { "create", "full", BACKUP_ROOT_DIR, "-t", 062 table1.getNameAsString() + "," + table2.getNameAsString() }; 063 // Run backup 064 int ret = ToolRunner.run(conf1, new BackupDriver(), args); 065 assertFalse(ret == 0); 066 067 // Now run restore 068 args = new String[] { "repair" }; 069 070 ret = ToolRunner.run(conf1, new BackupDriver(), args); 071 assertTrue(ret == 0); 072 073 List<BackupInfo> backups = table.getBackupHistory(); 074 int after = table.getBackupHistory().size(); 075 076 assertTrue(after == before + 1); 077 for (BackupInfo data : backups) { 078 String backupId = data.getBackupId(); 079 assertFalse(checkSucceeded(backupId)); 080 } 081 Set<TableName> tables = table.getIncrementalBackupTableSet(BACKUP_ROOT_DIR); 082 assertTrue(tables.size() == 0); 083 } 084 } 085 086}