Repository: hbase Updated Branches: refs/heads/branch-1 4b9eaf585 -> e180f0bdd
HBASE-12728 buffered writes substantially less useful after removal of HTablePool (addendum for failing test in branch-1.0) Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/e180f0bd Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/e180f0bd Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/e180f0bd Branch: refs/heads/branch-1 Commit: e180f0bdd1534910a20da0b02894249537628a7a Parents: 4b9eaf5 Author: Enis Soztutar <[email protected]> Authored: Sat Jan 24 17:57:04 2015 -0800 Committer: Enis Soztutar <[email protected]> Committed: Sat Jan 24 17:57:34 2015 -0800 ---------------------------------------------------------------------- .../hadoop/hbase/regionserver/TestFSErrorsExposed.java | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/e180f0bd/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestFSErrorsExposed.java ---------------------------------------------------------------------- diff --git a/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestFSErrorsExposed.java b/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestFSErrorsExposed.java index d24ba4f..4e97738 100644 --- a/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestFSErrorsExposed.java +++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/TestFSErrorsExposed.java @@ -180,9 +180,8 @@ public class TestFSErrorsExposed { Assume.assumeTrue(!util.isReadShortCircuitOn()); try { - // We set it not to run or it will trigger server shutdown while sync'ing - // because all the datanodes are bad - util.getConfiguration().setInt(HConstants.HBASE_CLIENT_RETRIES_NUMBER, 3); + // Make it fail faster. + util.getConfiguration().setInt(HConstants.HBASE_CLIENT_RETRIES_NUMBER, 1); util.startMiniCluster(1); TableName tableName = TableName.valueOf("table"); @@ -195,8 +194,7 @@ public class TestFSErrorsExposed { .setBlockCacheEnabled(false) ); admin.createTable(desc); - // Make it fail faster. - util.getConfiguration().setInt(HConstants.HBASE_CLIENT_RETRIES_NUMBER, 1); + // Make a new Configuration so it makes a new connection that has the // above configuration on it; else we use the old one w/ 10 as default. try (Table table = util.getConnection().getTable(tableName)) { @@ -263,6 +261,7 @@ public class TestFSErrorsExposed { faultsStarted = true; } + @Override public int read(long position, byte[] buffer, int offset, int length) throws IOException { injectFault();
