HBASE-4723 Loads of NotAllMetaRegionsOnlineException traces when starting the master

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1201097 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2011-11-11 23:21:07 +00:00
parent 571e8f8520
commit 7671b5d49d
2 changed files with 6 additions and 1 deletions

View File

@ -467,6 +467,8 @@ Release 0.92.0 - Unreleased
(Jonathan Hsieh)
HBASE-4741 Online schema change doesn't return errors
HBASE-4734 [bulk load] Warn if bulk load directory contained no files
HBASE-4723 Loads of NotAllMetaRegionsOnlineException traces when starting
the master
TESTS
HBASE-4450 test for number of blocks read: to serve as baseline for expected

View File

@ -411,7 +411,10 @@ public class CatalogTracker {
try {
if (waitForMeta(100) != null) break;
} catch (NotAllMetaRegionsOnlineException e) {
if (LOG.isTraceEnabled()) LOG.trace("Retrying", e);
if (LOG.isTraceEnabled()) {
LOG.info(".META. still not available, sleeping and retrying." +
" Reason: " + e.getMessage());
}
} catch (IOException e) {
LOG.info("Retrying", e);
}