vinayakphegde commented on PR #7445: URL: https://github.com/apache/hbase/pull/7445#issuecomment-3550589753
> > Is there any action that may remove a given table from the list of tables tracked by the pitr replication peer? > > @wchevreuil The only action I can think of is forcefully deleting the full backup (i.e. using `--force-delete`), as that is the foundation of the backup and thus the PITR. If the last full backup for the table is forcefully deleted, then all of the continuous backup metadata, associated WAL files, and the replication peer are cleaned up. If the user tries to delete the final full backup for that table without using `--force-delete`, then the delete attempt fails since that particular backup is important for the backup's integrity. > > @vinayakphegde @ankitsol @anmolnar Can one of you please confirm? Correct. related code: https://github.com/apache/hbase/blob/6aa212f5abe3b1556740c3e7e80a4761d21a1c15/hbase-backup/src/main/java/org/apache/hadoop/hbase/backup/impl/BackupCommands.java#L900 -- 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]
