Migrate Apache HBase to an HDInsight 5.1 and new storage account

This article discusses how to update your Apache HBase cluster on Azure HDInsight to a newer version with a different Azure Storage account.

This article applies only if you need to use different Storage accounts for your source and destination clusters. To upgrade versions with the same Storage account for your source and destination clusters, see Migrate Apache HBase to a new version.

The downtime while upgrading can be more than 20 minutes. This downtime caused by the steps to flush all in-memory data, and wait for all procedure to complete and the time to configure and restart the services on the new cluster. Your results vary, depending on the number of nodes, amount of data, and other variables.

Review Apache HBase compatibility

Before upgrading Apache HBase, ensure the HBase versions on the source and destination clusters are compatible. Review the HBase version compatibility matrix and release notes in the HBase Reference Guide to make sure your application is compatible with the new version.

Here's an example compatibility matrix. Y indicates compatibility and N indicates a potential incompatibility:

Compatibility type Major version Minor version Patch
Client-Server wire compatibility N Y Y
Server-Server compatibility N Y Y
File format compatibility N Y Y
Client API compatibility N Y Y
Client binary compatibility N N Y
Server-side limited API compatibility
Stable N Y Y
Evolving N N Y
Unstable N N N
Dependency compatibility N Y Y
Operational compatibility N N Y

The HBase version release notes should describe any breaking incompatibilities. Test your application in a cluster running the target version of HDInsight and HBase.

For more information about HDInsight versions and compatibility, see Azure HDInsight versions.

Apache HBase cluster migration overview

To upgrade and migrate your Apache HBase cluster on Azure HDInsight to a new storage account, you complete the following basic steps. For detailed instructions, see the detailed steps and commands.

Prepare the source cluster:

  1. Stop data ingestion.
  2. Check cluster health
  3. Stop replication if needed
  4. Flush memstore data.
  5. Stop HBase.
  6. For clusters with accelerated writes, back up the Write Ahead Log (WAL) directory.

Prepare the destination cluster:

  1. Create the destination cluster.
  2. Stop HBase from Ambari.
  3. Clean Zookeeper data.
  4. Switch user to HBase.

Complete the migration:

  1. Clean the destination file system, migrate the data, and remove /hbase/hbase.id.
  2. Clean and migrate the WAL.
  3. Start all services from the Ambari destination cluster.
  4. Verify HBase.
  5. Delete the source cluster.

Detailed migration steps and commands

Use these detailed steps and commands to migrate your Apache HBase cluster with a new storage account.

Prepare the source cluster

  1. Stop ingestion to the source HBase cluster.

  2. Check Hbase hbck to verify cluster health

    1. Verify HBCK Report page on HBase UI. Healthy cluster does not show any inconsistencies

      Screenshot showing how to verify HBCK report.

    2. If any inconsistencies exist, please fix inconsistencies using hbase hbck2

  3. Note down number of regions in online at source cluster, so that the number can be referred at destination cluster after the migration.

    Screenshot showing count of number of regions.

  4. If replication enabled on the cluster, please stop it and reenable the replication on destination cluster after migration. Refer HBase replication guide

  5. Flush the source HBase cluster you're upgrading.

    HBase writes incoming data to an in-memory store called a memstore. After the memstore reaches a certain size, HBase flushes it to disk for long-term storage in the cluster's storage account. Deleting the source cluster after an upgrade also deletes any data in the memstores. To retain the data, manually flush each table's memstore to disk before upgrading.

    You can flush the memstore data by running the flush_all_tables.sh script from the hbase-utils GitHub repository.

    You can also flush the memstore data by running the following HBase shell command from inside the HDInsight cluster:

    hbase shell
    flush "<table-name>"
    
  6. Wait for 15 mins and verify that all the procedures are completed, and masterProcWal files doesn't have any pending procedures.

    1. Verify the Procedures page to confirm that there are no pending procedures.

      Screenshot showing how to verify master process.

  7. STOP HBase

    1. Sign in to Apache Ambari on the source cluster with https://<OLDCLUSTERNAME>.azurehdinsight.net

    2. Turn on maintenance mode for HBase.

    3. Stop HBase Masters only first. First stop standby masters, in last stop Active HBase master.

      Screenshot showing how to stop master services.

    4. Stop the HBase service, it stops remaining servers.

      Note

      HBase 2.4.11 does not support some of the old Procedures.

      For more information on connecting to and using Ambari, see Manage HDInsight clusters by using the Ambari Web UI.

      Stopping HBase in the previous steps mentioned how Hbase avoids creating new master proc WALs.

  8. If your source HBase cluster doesn't have the Accelerated Writes feature, skip this step. For source HBase clusters with Accelerated Writes, back up the WAL directory under HDFS by running the following commands from an SSH session on any source cluster Zookeeper node or worker node.

    hdfs dfs -mkdir /hbase-wal-backup
    hdfs dfs -cp hdfs://mycluster/hbasewal /hbase-wal-backup
    

Prepare the destination cluster

  1. In the Azure portal, set up a new destination HDInsight cluster that uses a different storage account than your source cluster.

  2. Sign in to Apache Ambari on the new cluster at https://<NEWCLUSTERNAME>.azurehdinsight.net, and stop the HBase services.

  3. Clean the Zookeeper data on the destination cluster by running the following commands in any Zookeeper node or worker node:

    hbase zkcli
    rmr /hbase-unsecure
    quit
    
  4. Switch the user to HBase by running sudo su hbase.

Clean and migrate the file system and WAL

Run the following commands, depending on your source HDInsight version and whether the source and destination clusters have Accelerated Writes. The destination cluster is always HDInsight version 4.0, since HDInsight 3.6 is in Basic support and isn't recommended for new clusters.

The <container-endpoint-url> for the storage account is https://<storageaccount>.blob.core.windows.net/<container-name>. Pass the SAS token for the storage account at the very end of the URL.

  • The <container-fullpath> for storage type WASB is wasbs://<container-name>@<storageaccount>.blob.core.windows.net
  • The <container-fullpath> for storage type Azure Data Lake Storage Gen2 is abfs://<container-name>@<storageaccount>.dfs.core.windows.net.

Copy commands

The HDFS copy command is hdfs dfs <copy properties starting with -D> -cp

Use hadoop distcp for better performance when copying files not in a page blob: hadoop distcp <copy properties starting with -D>

To pass the key of the storage account, use:

  • -Dfs.azure.account.key.<storageaccount>.blob.core.windows.net='<storage account key>'
  • -Dfs.azure.account.keyprovider.<storageaccount>.blob.core.windows.net=org.apache.hadoop.fs.azure.SimpleKeyProvider

You can also use AzCopy for better performance when copying HBase data files.

  1. Run the AzCopy command:

    azcopy cp "<source-container-endpoint-url>/hbase" "<target-container-endpoint-url>" --recursive
    
  2. If the destination storage account is Azure Blob storage, do this step after the copy. If the destination storage account is Data Lake Storage Gen2, skip this step.

    The Hadoop WASB driver uses special zero sized blobs corresponding to every directory. AzCopy skips these files when doing the copy. Some WASB operations use these blobs, so you must create them in the destination cluster. To create the blobs, run the following Hadoop command from any node in the destination cluster:

    sudo -u hbase hadoop fs -chmod -R 0755 /hbase
    

You can download AzCopy from Get started with AzCopy. For more information about using AzCopy, see azcopy copy.

The source cluster is HDInsight 4.0 without Accelerated Writes, and the destination cluster has Accelerated Writes

  1. To clean the file system and migrate data, run the following commands:

    hdfs dfs -rm -r /hbase 
    hadoop distcp <source-container-fullpath>/hbase /
    
  2. Remove hbase.id by running hdfs dfs -rm /hbase/hbase.id

  3. To clean and migrate the WAL, run the following commands:

    hdfs dfs -rm -r hdfs://<destination-cluster>/hbasewal
    hdfs dfs -Dfs.azure.page.blob.dir="/hbase-wals" -cp <source-container-fullpath>/hbase-wals hdfs://<destination-cluster>/hbasewal
    

The source cluster is HDInsight 4.0 without Accelerated Writes, and the destination cluster doesn't have Accelerated Writes

  1. To clean the file system and migrate data, run the following commands:

    hdfs dfs -rm -r /hbase 
    hadoop distcp <source-container-fullpath>/hbase /
    
  2. Remove hbase.id by running hdfs dfs -rm /hbase/hbase.id

  3. To clean and migrate the WAL, run the following commands:

    hdfs dfs -rm -r /hbase-wals/*
    hdfs dfs -Dfs.azure.page.blob.dir="/hbase-wals" -cp <source-container-fullpath>/hbase-wals /
    

Complete the migration

  1. On the destination cluster, save your changes and restart all required services as indicated by Ambari.

  2. Point your application to the destination cluster.

    Note

    The static DNS name for your application changes when you upgrade. Rather than hard-coding this DNS name, you can configure a CNAME in your domain name's DNS settings that points to the cluster's name. Another option is to use a configuration file for your application that you can update without redeploying.

  3. Start the ingestion.

  4. Verify HBase consistency and simple Data Definition Language (DDL) and Data Manipulation Language (DML) operations.

  5. If the destination cluster is satisfactory, delete the source cluster.

Troubleshooting

Use case 1:

If Hbase masters and region servers up and regions stuck in transition or only one region i.e hbase:meta region is assigned. Waiting for other regions to assign

Solution:

  1. ssh into any ZooKeeper node of original cluster and run kinit -k -t /etc/security/keytabs/hbase.service.keytab hbase/<zk FQDN> if this is ESP cluster

  2. Run echo "scan 'hbase:meta'" | hbase shell > meta.out to read the hbase:meta into a file

  3. Run grep "info:sn" meta.out | awk '{print $4}' | sort | uniq to get all RS instance names where the regions were present in old cluster. Output should be like value=<wn FQDN>,16020,........

  4. Create a dummy WAL dir with that wn value

    If the cluster is accelerated write cluster

    hdfs dfs -mkdir hdfs://mycluster/hbasewal/WALs/<wn FQDN>,16020,.........
    

    If the cluster is nonaccelarated Write cluster

    hdfs dfs -mkdir /hbase-wals/WALs/<wn FQDN>,16020,.........
    
  5. Restart Active Hmaster

Next steps

To learn more about Apache HBase and upgrading HDInsight clusters, see the following articles: