Unquiet Desperation

To be awake is to be alive.

Thank you for reading Unquiet Desperation. Please consider
grabbing the RSS feed to stay updated on new articles and podcasts.

Posts Tagged ‘backup’

We (Mahalo) have just released a backup and restore tool for HBase.

From the docs:

Attached is a simple import, export, and backup utility. Mahalo.com has been using this in production for several months to back up our HBase clusters as well as to migrate data from production to development clusters, etc. Simple MapReduce job for exporting data from an HBase table. The exported data is in a simple, flat format that can then be imported using another MapReduce job. This gives you both a backup capability, and a simple way to import and export data from tables. The output of a backup job is a flat text file, or series of flat text files. Each row is represented by a single line, with each item tab delimited. Column names are plain text, while column values are base 64 encoded. This helps us deal with tabs and line breaks in the data. Generally you should not have to worry about this at all.

HBase Backup/Export/Import Tool