[
https://issues.apache.org/jira/browse/HBASE-4993?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13169115#comment-13169115
]
stack commented on HBASE-4993:
------------------------------
TestAdmin passes if you do something like this:
{code}
diff --git a/src/main/java/org/apache/hadoop/hbase/client/HBaseAdmin.java
b/src/main/java/org/apache/hadoop/hbase/client/HBaseAdmin.java
index 6bff130..1189696 100644
--- a/src/main/java/org/apache/hadoop/hbase/client/HBaseAdmin.java
+++ b/src/main/java/org/apache/hadoop/hbase/client/HBaseAdmin.java
@@ -1529,9 +1529,9 @@ public class HBaseAdmin implements Abortable, Closeable {
*/
public static void checkHBaseAvailable(Configuration conf)
throws MasterNotRunningException, ZooKeeperConnectionException {
- Configuration copyOfConf = HBaseConfiguration.create(conf);
- copyOfConf.setInt("hbase.client.retries.number", 1);
- HBaseAdmin admin = new HBaseAdmin(copyOfConf);
+ // Configuration copyOfConf = HBaseConfiguration.create(conf);
+ // copyOfConf.setInt("hbase.client.retries.number", 1);
+ HBaseAdmin admin = new HBaseAdmin(conf);
try {
admin.close();
} catch (IOException ioe) {
{code}
> Performance regression in minicluster creation
> ----------------------------------------------
>
> Key: HBASE-4993
> URL: https://issues.apache.org/jira/browse/HBASE-4993
> Project: HBase
> Issue Type: Bug
> Components: master
> Affects Versions: 0.94.0
> Environment: all
> Reporter: nkeywal
> Assignee: nkeywal
> Attachments: 4993.patch, 4993.v3.patch
>
>
> Side effect of 4610: the mini cluster needs 4,5 seconds to start
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira