HBASE-4293 More verbose logging in ServerShutdownHandler for meta/root cases
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1163388 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
954b292bbf
commit
187db8e624
|
@ -515,6 +515,8 @@ Release 0.90.5 - Unreleased
|
||||||
IMPROVEMENT
|
IMPROVEMENT
|
||||||
HBASE-4205 Enhance HTable javadoc (Eric Charles)
|
HBASE-4205 Enhance HTable javadoc (Eric Charles)
|
||||||
HBASE-4222 Make HLog more resilient to write pipeline failures
|
HBASE-4222 Make HLog more resilient to write pipeline failures
|
||||||
|
HBASE-4293 More verbose logging in ServerShutdownHandler for meta/root
|
||||||
|
cases (todd)
|
||||||
|
|
||||||
Release 0.90.4 - August 10, 2011
|
Release 0.90.4 - August 10, 2011
|
||||||
|
|
||||||
|
|
|
@ -177,11 +177,15 @@ public class ServerShutdownHandler extends EventHandler {
|
||||||
|
|
||||||
// Assign root and meta if we were carrying them.
|
// Assign root and meta if we were carrying them.
|
||||||
if (isCarryingRoot()) { // -ROOT-
|
if (isCarryingRoot()) { // -ROOT-
|
||||||
|
LOG.info("Server " + serverName + " was carrying ROOT. Trying to assign.");
|
||||||
verifyAndAssignRootWithRetries();
|
verifyAndAssignRootWithRetries();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Carrying meta?
|
// Carrying meta?
|
||||||
if (isCarryingMeta()) this.services.getAssignmentManager().assignMeta();
|
if (isCarryingMeta()) {
|
||||||
|
LOG.info("Server " + serverName + " was carrying META. Trying to assign.");
|
||||||
|
this.services.getAssignmentManager().assignMeta();
|
||||||
|
}
|
||||||
|
|
||||||
// Wait on meta to come online; we need it to progress.
|
// Wait on meta to come online; we need it to progress.
|
||||||
// TODO: Best way to hold strictly here? We should build this retry logic
|
// TODO: Best way to hold strictly here? We should build this retry logic
|
||||||
|
|
Loading…
Reference in New Issue