retry transient exceptions for PostgreSQL, fixes #1382

This commit is contained in:
Xavier Léauté 2015-05-22 09:35:03 -04:00
parent 7b649f6993
commit 6b23e02d2b
3 changed files with 70 additions and 0 deletions

View File

@ -56,6 +56,12 @@
<groupId>org.jdbi</groupId>
<artifactId>jdbi</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>

View File

@ -29,6 +29,8 @@ import org.skife.jdbi.v2.Handle;
import org.skife.jdbi.v2.tweak.HandleCallback;
import org.skife.jdbi.v2.util.StringMapper;
import java.sql.SQLException;
public class PostgreSQLConnector extends SQLMetadataConnector
{
private static final Logger log = new Logger(PostgreSQLConnector.class);
@ -112,4 +114,17 @@ public class PostgreSQLConnector extends SQLMetadataConnector
@Override
public DBI getDBI() { return dbi; }
@Override
protected boolean isTransientException(Throwable e)
{
if(e instanceof SQLException) {
final String sqlState = ((SQLException) e).getSQLState();
// limited to errors that are likely to be resolved within a few retries
// retry on connection errors and insufficient resources
// see http://www.postgresql.org/docs/current/static/errcodes-appendix.html for details
return sqlState != null && (sqlState.startsWith("08") || sqlState.startsWith("53"));
}
return false;
}
}

View File

@ -0,0 +1,49 @@
/*
* Licensed to Metamarkets Group Inc. (Metamarkets) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. Metamarkets 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 io.druid.metadata.storage.postgresql;
import com.google.common.base.Suppliers;
import io.druid.metadata.MetadataStorageConnectorConfig;
import io.druid.metadata.MetadataStorageTablesConfig;
import org.junit.Assert;
import org.junit.Test;
import java.sql.SQLException;
public class PostgreSQLConnectorTest
{
@Test
public void testIsTransientException() throws Exception
{
PostgreSQLConnector connector = new PostgreSQLConnector(
Suppliers.ofInstance(new MetadataStorageConnectorConfig()),
Suppliers.ofInstance(new MetadataStorageTablesConfig(null, null, null, null, null, null, null, null))
);
Assert.assertTrue(connector.isTransientException(new SQLException("bummer, connection problem", "08DIE")));
Assert.assertTrue(connector.isTransientException(new SQLException("bummer, too many things going on", "53RES")));
Assert.assertFalse(connector.isTransientException(new SQLException("oh god, no!", "58000")));
Assert.assertFalse(connector.isTransientException(new SQLException("help!")));
Assert.assertFalse(connector.isTransientException(new SQLException()));
Assert.assertFalse(connector.isTransientException(new Exception("I'm not happy")));
Assert.assertFalse(connector.isTransientException(new Throwable("I give up")));
}
}