HBASE-13935 Orphaned namespace table ZK node should not prevent master to start (Stephen Yuan Jiang)
This commit is contained in:
parent
34cd3377f8
commit
eb9b234ce2
|
@ -121,7 +121,12 @@ public class CreateTableHandler extends EventHandler {
|
||||||
throw new TableExistsException(tableName);
|
throw new TableExistsException(tableName);
|
||||||
}
|
}
|
||||||
|
|
||||||
checkAndSetEnablingTable(assignmentManager, tableName);
|
// During master initialization, the ZK state could be inconsistent from failed DDL
|
||||||
|
// in the past. If we fail here, it would prevent master to start. We should force
|
||||||
|
// setting the system table state regardless the table state.
|
||||||
|
boolean skipTableStateCheck =
|
||||||
|
!((HMaster) this.server).isInitialized() && tableName.isSystemTable();
|
||||||
|
checkAndSetEnablingTable(assignmentManager, tableName, skipTableStateCheck);
|
||||||
success = true;
|
success = true;
|
||||||
} finally {
|
} finally {
|
||||||
if (!success) {
|
if (!success) {
|
||||||
|
@ -132,7 +137,7 @@ public class CreateTableHandler extends EventHandler {
|
||||||
}
|
}
|
||||||
|
|
||||||
static void checkAndSetEnablingTable(final AssignmentManager assignmentManager,
|
static void checkAndSetEnablingTable(final AssignmentManager assignmentManager,
|
||||||
final TableName tableName) throws IOException {
|
final TableName tableName, boolean skipTableStateCheck) throws IOException {
|
||||||
// If we have multiple client threads trying to create the table at the
|
// If we have multiple client threads trying to create the table at the
|
||||||
// same time, given the async nature of the operation, the table
|
// same time, given the async nature of the operation, the table
|
||||||
// could be in a state where hbase:meta table hasn't been updated yet in
|
// could be in a state where hbase:meta table hasn't been updated yet in
|
||||||
|
@ -144,7 +149,12 @@ public class CreateTableHandler extends EventHandler {
|
||||||
// We could have cleared the hbase.rootdir and not zk. How can we detect this case?
|
// We could have cleared the hbase.rootdir and not zk. How can we detect this case?
|
||||||
// Having to clean zk AND hdfs is awkward.
|
// Having to clean zk AND hdfs is awkward.
|
||||||
try {
|
try {
|
||||||
if (!assignmentManager.getTableStateManager().setTableStateIfNotInStates(tableName,
|
if (skipTableStateCheck) {
|
||||||
|
assignmentManager.getTableStateManager().setTableState(
|
||||||
|
tableName,
|
||||||
|
ZooKeeperProtos.Table.State.ENABLING);
|
||||||
|
} else if (!assignmentManager.getTableStateManager().setTableStateIfNotInStates(
|
||||||
|
tableName,
|
||||||
ZooKeeperProtos.Table.State.ENABLING,
|
ZooKeeperProtos.Table.State.ENABLING,
|
||||||
ZooKeeperProtos.Table.State.ENABLING,
|
ZooKeeperProtos.Table.State.ENABLING,
|
||||||
ZooKeeperProtos.Table.State.ENABLED)) {
|
ZooKeeperProtos.Table.State.ENABLED)) {
|
||||||
|
|
|
@ -287,6 +287,12 @@ public class CreateTableProcedure
|
||||||
setFailure("master-create-table", new TableExistsException(getTableName()));
|
setFailure("master-create-table", new TableExistsException(getTableName()));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
// During master initialization, the ZK state could be inconsistent from failed DDL
|
||||||
|
// in the past. If we fail here, it would prevent master to start. We should force
|
||||||
|
// setting the system table state regardless the table state.
|
||||||
|
boolean skipTableStateCheck =
|
||||||
|
!(env.getMasterServices().isInitialized()) && tableName.isSystemTable();
|
||||||
|
if (!skipTableStateCheck) {
|
||||||
TableStateManager tsm = env.getMasterServices().getAssignmentManager().getTableStateManager();
|
TableStateManager tsm = env.getMasterServices().getAssignmentManager().getTableStateManager();
|
||||||
if (tsm.isTableState(tableName, true, ZooKeeperProtos.Table.State.ENABLING,
|
if (tsm.isTableState(tableName, true, ZooKeeperProtos.Table.State.ENABLING,
|
||||||
ZooKeeperProtos.Table.State.ENABLED)) {
|
ZooKeeperProtos.Table.State.ENABLED)) {
|
||||||
|
@ -295,6 +301,7 @@ public class CreateTableProcedure
|
||||||
setFailure("master-create-table", new TableExistsException(getTableName()));
|
setFailure("master-create-table", new TableExistsException(getTableName()));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,68 @@
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one
|
||||||
|
* or more contributor license agreements. See the NOTICE file
|
||||||
|
* distributed with this work for additional information
|
||||||
|
* regarding copyright ownership. The ASF licenses this file
|
||||||
|
* to you under the Apache License, Version 2.0 (the
|
||||||
|
* "License"); you may not use this file except in compliance
|
||||||
|
* with the License. You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
package org.apache.hadoop.hbase.master.procedure;
|
||||||
|
|
||||||
|
import static org.junit.Assert.assertTrue;
|
||||||
|
|
||||||
|
import org.apache.commons.logging.Log;
|
||||||
|
import org.apache.commons.logging.LogFactory;
|
||||||
|
import org.apache.hadoop.hbase.HBaseTestingUtility;
|
||||||
|
import org.apache.hadoop.hbase.testclassification.MediumTests;
|
||||||
|
import org.apache.hadoop.hbase.TableName;
|
||||||
|
import org.apache.hadoop.hbase.protobuf.ProtobufUtil;
|
||||||
|
import org.apache.hadoop.hbase.protobuf.generated.ZooKeeperProtos;
|
||||||
|
import org.apache.hadoop.hbase.zookeeper.MiniZooKeeperCluster;
|
||||||
|
import org.apache.hadoop.hbase.zookeeper.ZKUtil;
|
||||||
|
import org.apache.hadoop.hbase.zookeeper.ZooKeeperWatcher;
|
||||||
|
import org.junit.After;
|
||||||
|
import org.junit.Test;
|
||||||
|
import org.junit.experimental.categories.Category;
|
||||||
|
|
||||||
|
@Category(MediumTests.class)
|
||||||
|
public class TestCreateTableProcedure2 {
|
||||||
|
private static final HBaseTestingUtility TEST_UTIL = new HBaseTestingUtility();
|
||||||
|
private static final Log LOG = LogFactory.getLog(TestCreateTableProcedure2.class);
|
||||||
|
|
||||||
|
@After
|
||||||
|
public void tearDown() throws Exception {
|
||||||
|
TEST_UTIL.shutdownMiniCluster();
|
||||||
|
TEST_UTIL.shutdownMiniZKCluster();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testMasterRestartAfterNameSpaceEnablingNodeIsCreated() throws Exception {
|
||||||
|
// Step 1: start mini zk cluster.
|
||||||
|
MiniZooKeeperCluster zkCluster;
|
||||||
|
zkCluster = TEST_UTIL.startMiniZKCluster();
|
||||||
|
// Step 2: add an orphaned system table ZNODE
|
||||||
|
TableName tableName = TableName.valueOf("hbase:namespace");
|
||||||
|
ZooKeeperWatcher zkw = TEST_UTIL.getZooKeeperWatcher();
|
||||||
|
String znode = ZKUtil.joinZNode(zkw.tableZNode, tableName.getNameAsString());
|
||||||
|
ZooKeeperProtos.Table.Builder builder = ZooKeeperProtos.Table.newBuilder();
|
||||||
|
builder.setState(ZooKeeperProtos.Table.State.ENABLED);
|
||||||
|
byte [] data = ProtobufUtil.prependPBMagic(builder.build().toByteArray());
|
||||||
|
ZKUtil.createSetData(zkw, znode, data);
|
||||||
|
LOG.info("Create an orphaned Znode " + znode + " with data " + data);
|
||||||
|
// Step 3: link the zk cluster to hbase cluster
|
||||||
|
TEST_UTIL.setZkCluster(zkCluster);
|
||||||
|
// Step 4: start hbase cluster and expect master to start successfully.
|
||||||
|
TEST_UTIL.startMiniCluster();
|
||||||
|
assertTrue(TEST_UTIL.getHBaseCluster().getLiveMasterThreads().size() == 1);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue