Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

Which is best method for taking backup of hbase data?

avatar

Hi,

Can anyone suggest me which is best method for taking backup of hbase data among distcp, copyTable, export/import, cluster replication?

1 ACCEPTED SOLUTION

avatar
Master Guru

Hi @Rushikesh Deshmukh, for a list of backup options check this. CopyTable is a nice option, using multiple mappers, you can copy individual tables to the same or another cluster. You can miss a few edits but you will end up with a useful copy.

View solution in original post

12 REPLIES 12

avatar

You can use snapshots to take backup https://hbase.apache.org/book.html#ops.snapshots

avatar

@Rajeshbabu Chintaguntla, can you please explain what are advantages of using snapshots over other methods and also provide command to be used for taking snapshots?

avatar

@Rajeshbabu Chintaguntla, thanks for sharing this info. and link.

avatar

Preference wise (as Impact on running cluster will also be very less):-

cluster replication:- If requirement is to recover in realtime and new cluster can be afforded.

export snapshot:- if recovery to last taken snapshot is fine and cost of this approach is less as you can export it to any cheap storage(hdfs,s3 or anything). But with this incremental backup will not be possible, old backups will become obsolete with the new.

avatar

@ asinghal, thanks for sharing this useful information.

avatar
Rising Star

Hi Rushikesh,

Suggest you to go through this article might be helpful:

https://docs.hortonworks.com/HDPDocuments/HDP2/HDP-2.3.2/bk_hbase_snapshots_guide/content/ch_hbase_s...

Regards,

Karthik Gopal

avatar
Rising Star

HBase Snapshots allow you to take a snapshot of a table without much impact on Region Servers. Snapshot, clone, and restore operations don't involve data copying. In addition, exporting a snapshot to another cluster has no impact on region servers.

avatar

@Karthik Gopal

thanks for reply, found some useful information on given link. Does hbase_snapshots is best method for backup on live environment?

avatar
Master Guru

Hi @Rushikesh Deshmukh, for a list of backup options check this. CopyTable is a nice option, using multiple mappers, you can copy individual tables to the same or another cluster. You can miss a few edits but you will end up with a useful copy.