- 快召唤伙伴们来围观吧
- 微博 QQ QQ空间 贴吧
- 文档嵌入链接
- 复制
- 微信扫一扫分享
- 已成功复制到剪贴板
HBase 数据备份与恢复
展开查看详情
1 .HBase Backup and Restore Vladimir Rodionov Ted Yu © Hortonworks Inc. 2014 Page 1
2 .About the authors • Ted Yu: • Been working on HBase for over 6 years • HBase committer / PMC • Senior Staff Engineer at Hortonworks • Vladimir: • active contributor to hbase (over 100 HBase JIRAs) • completed most of the backup work based on IBM’s initial contribution • Senior Staff Engineer at Hortonworks © Hortonworks Inc. 2014 Page 2
3 .HBase Backup – Why We Need It • Database needs disaster recovery tool • Previously users can perform snapshot • However, execution cost for snapshot may be high – flush across region servers is involved • There was no incremental snapshot – whole dataset is captured by snapshot • Incremental backup doesn’t involve flushing, making continuous backup possible © Hortonworks Inc. 2014 Page 3
4 .Brief History of Backup / Restore work • Started by engineers at IBM – see HBASE-7912 • Initial design included backup manifest • Vladimir / Ted picked up the work last year • Vladimir rendered many iterations of patches for phase 2 work (see HBASE-14123) • Due to feedback from community, the design has gone thru major changes • Mostly tested by developers and QA engineers so far © Hortonworks Inc. 2014 Page 4
5 .HBase Backup Types • Full backup – foundation for incremental backups • Incremental backup – can be periodic to capture changes over time • Supports table level backup © Hortonworks Inc. 2014 Page 5
6 .Required Configuration • Set hbase.backup.enable to true • BackupLogCleaner for hbase.master.logcleaner.plugins • LogRollMasterProcedureManager for hbase.procedure.master.classes • LogRollRegionServerProcedureManager for hbase.procedure.regionserver.classes • Backup may get stuck if not configured properly © Hortonworks Inc. 2014 Page 6
7 .Backup Strategy • Intra-cluster backup is appropriate for testing © Hortonworks Inc. 2014 Page 7
8 .Backup Strategy: Dedicated HDFS Cluster • backup on a separate HDFS archive cluster © Hortonworks Inc. 2014 Page 8
9 .Backup Strategy: Cloud or a Storage Vendor • vendor can be a public cloud provider or a storage vendor who uses a Hadoop compatible file system © Hortonworks Inc. 2014 Page 9
10 .Best Practices for Backup-and-Restore • Secure a full backup image first • Formulate a restore strategy and test it • Define and use backup sets for groups of tables that are logical subsets of the entire dataset • Document the backup-and-restore strategy, and ideally log information about each backup © Hortonworks Inc. 2014 Page 10
11 .Creating/Maintaining Backup Image • Run the following command as hbase superuser: • hbase backup create {{ full | incremental } {backup_root_path} {[-t tables] | [-set backup_set_name]}} [[-silent] | [-w number_of_workers] | [-b bandwidth_per_worker]] © Hortonworks Inc. 2014 Page 11
12 .Using Backup Sets • Reduces the amount of repetitive input of table names. • “hbase backup set add” command. • You can have multiple backup sets • Backup set can be used in the “hbase backup create” or “hbase backup restore” commands © Hortonworks Inc. 2014 Page 12
13 .Restoring a Backup Image • You can only restore on a live HBase cluster • Run the following command as hbase superuser • hbase restore {[-set backup_set_name] | [backup_root_path] | [backupId] | [tables]} [[table_mapping] | [-overwrite] | [-check]] • hbase restore /tmp/backup_incremental backupId_1467823988425 -t mytable1,mytable2 - overwrite © Hortonworks Inc. 2014 Page 13
14 .Backup table • Backup table will keep track of all backup sessions – Write/Read backup session state – Write/Read backup session progress (per region server). – Stores last backed up WAL file timestamp (per region server). – Stores list of all backed up WAL files (for BackupLogCleaner ) – Stores backup sets • Must be backed up and restored separately from other tables • Information needed for restore is on hdfs © Hortonworks Inc. 2014 Page 14
15 .Incremental backups • Use Write Ahead Logs (WALs) to capture the data changes since the previous backup • Log roll is executed across all RegionServers • All the WAL files from incremental backups between the last full backup and the incremental backup are converted to HFiles • A process similar to the DistCp tool is used to move the source backup files to the target file system © Hortonworks Inc. 2014 Page 15
16 .Filter WALs on backup to only include relevant edits • Suppose incremental backup request is for table t, all the tables already registered in a backup system, T, are union’ed with t • For every table K in the union: 1. Convert new WAL files into HFile applying table filter for K 2. Move these HFile(s) to backup destination © Hortonworks Inc. 2014 Page 16
17 .Restore • The full backup is restored from the full backup image. • HFileSplitter job will collect all HFile(s), split them into new region boundaries • HBase Bulk Load utility is invoked by restore to import the HFiles as restored data in the table. © Hortonworks Inc. 2014 Page 17
18 .Backup Manifest • Backup image has the following: • Backup Id, Backup Type, Backup Rootdir, Table List, start timestamp, completion timestamp • Mapping between region server and last recorded WAL timestamp • Backup image keeps lineage of all previously created backup images (ancestors) • When backup image list covers the image being considered, it is removed from restore • See message BackupImage in Backup.proto © Hortonworks Inc. 2014 Page 18
19 .Bulk load support • Bulk loaded Hfiles are recorded in backup table at the end of bulk load, thru preCommitStoreFile() hook • During incremental backup, these Hfiles are copied to backup destination • During restore, these Hfiles are loaded into target table © Hortonworks Inc. 2014 Page 19
20 .Limitations of the Backup-Restore • Only one active backup session is supported. • Both backup and restore can’t be canceled while in progress. (HBASE-15997,15998) • Single backup destination only is supported. HBASE- 15476 • There is no merge for incremental images (HBASE- 14135) • Only superuser (hbase) is allowed to perform backup/restore © Hortonworks Inc. 2014 Page 20
21 .Credit • Richard Ding • Vladimir Rodionov © Hortonworks Inc. 2014 Page 21
22 .Q/A © Hortonworks Inc. 2014 Page 22
23 .Thank you. © Hortonworks Inc. 2014 Page 23