Midhun Mathew Sunny
Midhun Mathew Sunny

Reputation: 1361

Importing a Hbase snapshot from HDFS

I have created a snapshot of a table in Hbase and exported it using hbase org.apache.hadoop.hbase.snapshot.ExportSnapshot -snapshot -copy-to Now I have deleted the snapshot from Hbase. How can I import the snapshot from HDFS back to Hbase.

Upvotes: 0

Views: 1079

Answers (1)

user3123372
user3123372

Reputation: 744

hadoop fs -put hdfs:///pathNameWhereSnapshotWasPutInitially /hbase/data/default/tablename/cde4801e4c115003ef51e50f5ef23041/1/

where cde4801e4c115003ef51e50f5ef23041 is subjected to change.

Upvotes: 1

Related Questions