Skip to content

Commit

Permalink
HIVE-4159:RetryingHMSHandler doesn't retry in enough cases (Kevin Wil…
Browse files Browse the repository at this point in the history
…fong vi Gang Tim Liu)

git-svn-id: https://svn.apache.org/repos/asf/hive/trunk@1462350 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
Gang Tim Liu committed Mar 28, 2013
1 parent 7739b67 commit dc20ac3
Show file tree
Hide file tree
Showing 3 changed files with 190 additions and 10 deletions.
Expand Up @@ -28,13 +28,10 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hive.common.JavaUtils;
import org.apache.hadoop.hive.common.classification.InterfaceAudience;
import org.apache.hadoop.hive.common.classification.InterfaceStability;
import org.apache.hadoop.hive.conf.HiveConf;
import org.apache.hadoop.hive.metastore.api.MetaException;
import org.apache.hadoop.hive.metastore.hooks.JDOConnectionURLHook;
import org.apache.hadoop.util.ReflectionUtils;

@InterfaceAudience.Private
@InterfaceStability.Evolving
Expand All @@ -43,7 +40,7 @@ public class RetryingHMSHandler implements InvocationHandler {
private static final Log LOG = LogFactory.getLog(RetryingHMSHandler.class);

private final IHMSHandler base;
private MetaStoreInit.MetaStoreInitData metaStoreInitData =
private final MetaStoreInit.MetaStoreInitData metaStoreInitData =
new MetaStoreInit.MetaStoreInitData();
private final HiveConf hiveConf;

Expand Down Expand Up @@ -112,13 +109,15 @@ public Object invoke(Object proxy, Method method, Object[] args) throws Throwabl
// Due to reflection, the jdo exception is wrapped in
// invocationTargetException
caughtException = e.getCause();
}
else {
} else if (e.getCause() instanceof MetaException && e.getCause().getCause() != null
&& e.getCause().getCause() instanceof javax.jdo.JDOException) {
// The JDOException may be wrapped further in a MetaException
caughtException = e.getCause().getCause();
} else {
LOG.error(ExceptionUtils.getStackTrace(e.getCause()));
throw e.getCause();
}
}
else {
} else {
LOG.error(ExceptionUtils.getStackTrace(e));
throw e;
}
Expand All @@ -127,8 +126,11 @@ public Object invoke(Object proxy, Method method, Object[] args) throws Throwabl
// Due to reflection, the jdo exception is wrapped in
// invocationTargetException
caughtException = e.getCause();
}
else {
} else if (e.getCause() instanceof MetaException && e.getCause().getCause() != null
&& e.getCause().getCause() instanceof javax.jdo.JDOException) {
// The JDOException may be wrapped further in a MetaException
caughtException = e.getCause().getCause();
} else {
LOG.error(ExceptionUtils.getStackTrace(e.getCause()));
throw e.getCause();
}
Expand Down
@@ -0,0 +1,62 @@
/**
* 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.hive.metastore;

import javax.jdo.JDOException;

import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hive.metastore.api.InvalidOperationException;
import org.apache.hadoop.hive.metastore.api.MetaException;
import org.apache.hadoop.hive.metastore.api.NoSuchObjectException;
import org.apache.hadoop.hive.metastore.events.PreEventContext;

/**
*
* AlternateFailurePreListener.
*
* An implemenation of MetaStorePreEventListener which fails every other time it's invoked,
* starting with the first time.
*
* It also records and makes available the number of times it's been invoked.
*/
public class AlternateFailurePreListener extends MetaStorePreEventListener {

private static int callCount = 0;
private static boolean throwException = true;

public AlternateFailurePreListener(Configuration config) {
super(config);
}

@Override
public void onEvent(PreEventContext context) throws MetaException, NoSuchObjectException,
InvalidOperationException {

callCount++;
if (throwException) {
throwException = false;
throw new JDOException();
}

throwException = true;
}

public static int getCallCount() {
return callCount;
}
}
@@ -0,0 +1,116 @@
/**
* 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.hive.metastore;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;

import junit.framework.Assert;
import junit.framework.TestCase;

import org.apache.hadoop.hive.conf.HiveConf;
import org.apache.hadoop.hive.metastore.api.Database;
import org.apache.hadoop.hive.metastore.api.FieldSchema;
import org.apache.hadoop.hive.metastore.api.Order;
import org.apache.hadoop.hive.metastore.api.SerDeInfo;
import org.apache.hadoop.hive.metastore.api.StorageDescriptor;
import org.apache.hadoop.hive.metastore.api.Table;
import org.apache.hadoop.hive.serde.serdeConstants;
import org.apache.hadoop.hive.shims.ShimLoader;

/**
* TestRetryingHMSHandler. Test case for
* {@link org.apache.hadoop.hive.metastore.RetryingHMSHandler}
*/
public class TestRetryingHMSHandler extends TestCase {
private HiveConf hiveConf;
private HiveMetaStoreClient msc;

@Override
protected void setUp() throws Exception {

super.setUp();
System.setProperty("hive.metastore.pre.event.listeners",
AlternateFailurePreListener.class.getName());
int port = MetaStoreUtils.findFreePort();
MetaStoreUtils.startMetaStore(port, ShimLoader.getHadoopThriftAuthBridge());
hiveConf = new HiveConf(this.getClass());
hiveConf.setVar(HiveConf.ConfVars.METASTOREURIS, "thrift://localhost:" + port);
hiveConf.setIntVar(HiveConf.ConfVars.METASTORETHRIFTCONNECTIONRETRIES, 3);
hiveConf.setIntVar(HiveConf.ConfVars.HMSHANDLERATTEMPTS, 2);
hiveConf.setIntVar(HiveConf.ConfVars.HMSHANDLERINTERVAL, 0);
hiveConf.setBoolVar(HiveConf.ConfVars.HMSHANDLERFORCERELOADCONF, false);
msc = new HiveMetaStoreClient(hiveConf, null);
}

@Override
protected void tearDown() throws Exception {
super.tearDown();
}

// Create a database and a table in that database. Because the AlternateFailurePreListener is
// being used each attempt to create something should require two calls by the RetryingHMSHandler
public void testRetryingHMSHandler() throws Exception {
String dbName = "tmpdb";
String tblName = "tmptbl";

Database db = new Database();
db.setName(dbName);
msc.createDatabase(db);

Assert.assertEquals(2, AlternateFailurePreListener.getCallCount());

ArrayList<FieldSchema> cols = new ArrayList<FieldSchema>(2);
cols.add(new FieldSchema("c1", serdeConstants.STRING_TYPE_NAME, ""));
cols.add(new FieldSchema("c2", serdeConstants.INT_TYPE_NAME, ""));

Map<String, String> params = new HashMap<String, String>();
params.put("test_param_1", "Use this for comments etc");

Map<String, String> serdParams = new HashMap<String, String>();
serdParams.put(serdeConstants.SERIALIZATION_FORMAT, "1");

StorageDescriptor sd = new StorageDescriptor();

sd.setCols(cols);
sd.setCompressed(false);
sd.setNumBuckets(1);
sd.setParameters(params);
sd.setBucketCols(new ArrayList<String>(2));
sd.getBucketCols().add("name");
sd.setSerdeInfo(new SerDeInfo());
sd.getSerdeInfo().setName(tblName);
sd.getSerdeInfo().setParameters(serdParams);
sd.getSerdeInfo().getParameters()
.put(serdeConstants.SERIALIZATION_FORMAT, "1");
sd.setSortCols(new ArrayList<Order>());

Table tbl = new Table();
tbl.setDbName(dbName);
tbl.setTableName(tblName);
tbl.setSd(sd);
tbl.setLastAccessTime(0);

msc.createTable(tbl);

Assert.assertEquals(4, AlternateFailurePreListener.getCallCount());
}

}

0 comments on commit dc20ac3

Please sign in to comment.