[jira] [Commented] (HBASE-12140) Add ConnectionFactory.createConnection() to create using default HBaseConfiguration.

2014-10-01 Thread stack (JIRA)

[ 
https://issues.apache.org/jira/browse/HBASE-12140?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14154938#comment-14154938
 ] 

stack commented on HBASE-12140:
---

+1

Good by you [~enis] for branch-1?

 Add ConnectionFactory.createConnection() to create using default 
 HBaseConfiguration.
 

 Key: HBASE-12140
 URL: https://issues.apache.org/jira/browse/HBASE-12140
 Project: HBase
  Issue Type: Bug
  Components: Client
Affects Versions: 0.99.1
Reporter: Jean-Marc Spaggiari
Assignee: Jean-Marc Spaggiari
 Fix For: 2.0.0, 0.99.1

 Attachments: HBASE-12140-v1-trunk.patch


 Add
 {code}
 ConnectionFactory.createConnection();
 {code}
 which creates a connection with a default config.
 A shortcut for
 {code}
 Configuration conf = HBaseConfiguration.create();
 Connection connection = ConnectionFactory.createConnection(conf);
 HBaseAdmin admin = (HBaseAdmin)connection.getAdmin();
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (HBASE-12140) Add ConnectionFactory.createConnection() to create using default HBaseConfiguration.

2014-10-01 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/HBASE-12140?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14155138#comment-14155138
 ] 

Hadoop QA commented on HBASE-12140:
---

{color:red}-1 overall{color}.  Here are the results of testing the latest 
attachment 
  
http://issues.apache.org/jira/secure/attachment/12672328/HBASE-12140-v1-trunk.patch
  against trunk revision .
  ATTACHMENT ID: 12672328

{color:green}+1 @author{color}.  The patch does not contain any @author 
tags.

{color:red}-1 tests included{color}.  The patch doesn't appear to include 
any new or modified tests.
Please justify why no new tests are needed for this 
patch.
Also please list what manual steps were performed to 
verify this patch.

{color:green}+1 javac{color}.  The applied patch does not increase the 
total number of javac compiler warnings.

{color:green}+1 javac{color}.  The applied patch does not increase the 
total number of javac compiler warnings.

{color:red}-1 javadoc{color}.  The javadoc tool appears to have generated 5 
warning messages.

{color:red}-1 findbugs{color}.  The patch appears to cause Findbugs 
(version 2.0.3) to fail.

{color:green}+1 release audit{color}.  The applied patch does not increase 
the total number of release audit warnings.

{color:green}+1 lineLengths{color}.  The patch does not introduce lines 
longer than 100

  {color:green}+1 site{color}.  The mvn site goal succeeds with this patch.

 {color:red}-1 core tests{color}.  The patch failed these unit tests:
 

 {color:red}-1 core zombie tests{color}.  There are 1 zombie test(s):   
at 
org.apache.blur.store.hdfs_v2.HdfsKeyValueStoreTest.testFileRolling(HdfsKeyValueStoreTest.java:123)

Test results: 
https://builds.apache.org/job/PreCommit-HBASE-Build/11168//testReport/
Console output: 
https://builds.apache.org/job/PreCommit-HBASE-Build/11168//console

This message is automatically generated.

 Add ConnectionFactory.createConnection() to create using default 
 HBaseConfiguration.
 

 Key: HBASE-12140
 URL: https://issues.apache.org/jira/browse/HBASE-12140
 Project: HBase
  Issue Type: Bug
  Components: Client
Affects Versions: 0.99.1
Reporter: Jean-Marc Spaggiari
Assignee: Jean-Marc Spaggiari
 Fix For: 2.0.0, 0.99.1

 Attachments: HBASE-12140-v1-trunk.patch


 Add
 {code}
 ConnectionFactory.createConnection();
 {code}
 which creates a connection with a default config.
 A shortcut for
 {code}
 Configuration conf = HBaseConfiguration.create();
 Connection connection = ConnectionFactory.createConnection(conf);
 HBaseAdmin admin = (HBaseAdmin)connection.getAdmin();
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (HBASE-12140) Add ConnectionFactory.createConnection() to create using default HBaseConfiguration.

2014-10-01 Thread Enis Soztutar (JIRA)

[ 
https://issues.apache.org/jira/browse/HBASE-12140?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14155935#comment-14155935
 ] 

Enis Soztutar commented on HBASE-12140:
---

+1 for 0.99+. 

 Add ConnectionFactory.createConnection() to create using default 
 HBaseConfiguration.
 

 Key: HBASE-12140
 URL: https://issues.apache.org/jira/browse/HBASE-12140
 Project: HBase
  Issue Type: Bug
  Components: Client
Affects Versions: 0.99.1
Reporter: Jean-Marc Spaggiari
Assignee: Jean-Marc Spaggiari
 Fix For: 2.0.0, 0.99.1

 Attachments: HBASE-12140-v1-trunk.patch


 Add
 {code}
 ConnectionFactory.createConnection();
 {code}
 which creates a connection with a default config.
 A shortcut for
 {code}
 Configuration conf = HBaseConfiguration.create();
 Connection connection = ConnectionFactory.createConnection(conf);
 HBaseAdmin admin = (HBaseAdmin)connection.getAdmin();
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (HBASE-12140) Add ConnectionFactory.createConnection() to create using default HBaseConfiguration.

2014-10-01 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/HBASE-12140?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14156054#comment-14156054
 ] 

Hudson commented on HBASE-12140:


FAILURE: Integrated in HBase-TRUNK #5606 (See 
[https://builds.apache.org/job/HBase-TRUNK/5606/])
HBASE-12140 Add ConnectionFactory.createConnection() to create using default 
HBaseConfiguration. (Jean-Marc Spaggiari)) (enis: rev 
11e28eb76b0f5b55386af08e688c50ce5184c5be)
* 
hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionFactory.java


 Add ConnectionFactory.createConnection() to create using default 
 HBaseConfiguration.
 

 Key: HBASE-12140
 URL: https://issues.apache.org/jira/browse/HBASE-12140
 Project: HBase
  Issue Type: Bug
  Components: Client
Affects Versions: 0.99.1
Reporter: Jean-Marc Spaggiari
Assignee: Jean-Marc Spaggiari
 Fix For: 2.0.0, 0.99.1

 Attachments: HBASE-12140-v1-trunk.patch


 Add
 {code}
 ConnectionFactory.createConnection();
 {code}
 which creates a connection with a default config.
 A shortcut for
 {code}
 Configuration conf = HBaseConfiguration.create();
 Connection connection = ConnectionFactory.createConnection(conf);
 HBaseAdmin admin = (HBaseAdmin)connection.getAdmin();
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (HBASE-12140) Add ConnectionFactory.createConnection() to create using default HBaseConfiguration.

2014-10-01 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/HBASE-12140?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14156110#comment-14156110
 ] 

Hudson commented on HBASE-12140:


FAILURE: Integrated in HBase-1.0 #259 (See 
[https://builds.apache.org/job/HBase-1.0/259/])
HBASE-12140 Add ConnectionFactory.createConnection() to create using default 
HBaseConfiguration. (Jean-Marc Spaggiari)) (enis: rev 
5ad5d0e8bca68b13a7461b6cfd9c41330e513b94)
* 
hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionFactory.java


 Add ConnectionFactory.createConnection() to create using default 
 HBaseConfiguration.
 

 Key: HBASE-12140
 URL: https://issues.apache.org/jira/browse/HBASE-12140
 Project: HBase
  Issue Type: Bug
  Components: Client
Affects Versions: 0.99.1
Reporter: Jean-Marc Spaggiari
Assignee: Jean-Marc Spaggiari
 Fix For: 2.0.0, 0.99.1

 Attachments: HBASE-12140-v1-trunk.patch


 Add
 {code}
 ConnectionFactory.createConnection();
 {code}
 which creates a connection with a default config.
 A shortcut for
 {code}
 Configuration conf = HBaseConfiguration.create();
 Connection connection = ConnectionFactory.createConnection(conf);
 HBaseAdmin admin = (HBaseAdmin)connection.getAdmin();
 {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)