From 465d7d85a661cb85cef42d6392d90e54552bf689 Mon Sep 17 00:00:00 2001 From: Jonathan M Hsieh Date: Mon, 25 Aug 2014 13:52:22 -0700 Subject: [PATCH] HBASE-11782 Document that hbase.MetaMigrationConvertingToPB needs to be set to true for migrations pre 0.96 (Misty Stanley-Jones) --- src/main/docbkx/upgrading.xml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/main/docbkx/upgrading.xml b/src/main/docbkx/upgrading.xml index 733df3dbd05..1b68c2e83cc 100644 --- a/src/main/docbkx/upgrading.xml +++ b/src/main/docbkx/upgrading.xml @@ -259,6 +259,21 @@ Successfully completed Log splitting 17:22:15 at Client_4_3_0.main(Client_4_3_0.java:63) +
+ Upgrading <code>META</code> to use Protocol Buffers (Protobuf) + When you upgrade from versions prior to 0.96, META needs to be + converted to use protocol buffers. This is controlled by the configuration + option , which is set to + true by default. Therefore, by default, no action is + required on your part. + The migration is a one-time event. However, every time your cluster starts, + META is scanned to ensure that it does not need to be + converted. If you have a very large number of regions, this scan can take a long + time. Starting in 0.98.5, you can set + to + false in hbase-site.xml, to disable + this start-up scan. This should be considered an expert-level setting. +