Skip to content

Commit

Permalink
HBASE-4293 More verbose logging in ServerShutdownHandler for meta/roo…
Browse files Browse the repository at this point in the history
…t cases

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1163388 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
toddlipcon committed Aug 30, 2011
1 parent 954b292 commit 187db8e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -515,6 +515,8 @@ Release 0.90.5 - Unreleased
IMPROVEMENT
HBASE-4205 Enhance HTable javadoc (Eric Charles)
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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,11 +177,15 @@ public void process() throws IOException {

// Assign root and meta if we were carrying them.
if (isCarryingRoot()) { // -ROOT-
LOG.info("Server " + serverName + " was carrying ROOT. Trying to assign.");
verifyAndAssignRootWithRetries();
}

// 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.
// TODO: Best way to hold strictly here? We should build this retry logic
Expand Down

0 comments on commit 187db8e

Please sign in to comment.