You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "Matteo Bertozzi (Created) (JIRA)" <ji...@apache.org> on 2012/03/26 19:54:31 UTC

[jira] [Created] (HBASE-5638) Backport HBASE-5633 to 0.90 and 0.92 - NPE reading ZK config in HBase

Backport HBASE-5633 to 0.90 and 0.92 - NPE reading ZK config in HBase
---------------------------------------------------------------------

                 Key: HBASE-5638
                 URL: https://issues.apache.org/jira/browse/HBASE-5638
             Project: HBase
          Issue Type: Sub-task
          Components: zookeeper
    Affects Versions: 0.92.1, 0.90.6
            Reporter: Matteo Bertozzi
            Priority: Minor
             Fix For: 0.90.7, 0.92.2




--
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

        

[jira] [Commented] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Hudson (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13242063#comment-13242063 ] 

Hudson commented on HBASE-5638:
-------------------------------

Integrated in HBase-TRUNK-security #154 (See [https://builds.apache.org/job/HBase-TRUNK-security/154/])
    HBASE-5638 Readability improvements on HBASE-5633: NPE reading ZK config in HBase (Matteo Bertozzi) (Revision 1307085)

     Result = FAILURE
jmhsieh : 
Files : 
* /hbase/trunk/src/main/java/org/apache/hadoop/hbase/HConstants.java
* /hbase/trunk/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
* /hbase/trunk/src/main/java/org/apache/hadoop/hbase/zookeeper/ZKConfig.java

                
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Assignee: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2, 0.94.0, 0.94.1
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch, HBASE-5638-0.90-v1.patch, HBASE-5638-0.90-v2.patch, HBASE-5638-0.92-v1.patch, HBASE-5638-0.92-v2.patch, HBASE-5638-trunk-v1.patch, HBASE-5638-trunk-v2.patch
>
>


--
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

        

[jira] [Updated] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Matteo Bertozzi (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Matteo Bertozzi updated HBASE-5638:
-----------------------------------

    Attachment: HBASE-5633-0.92.patch
                HBASE-5633-0.90.patch

I've attached the 0.90 and 0.92 patches to backport HBASE-5633 fix
                
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch
>
>


--
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

        

[jira] [Commented] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Jonathan Hsieh (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13241077#comment-13241077 ] 

Jonathan Hsieh commented on HBASE-5638:
---------------------------------------

Matteo, 

We should probably use the built-in boolean parser in configuration instead of doing a the string compare -- something like this:

{code}
if (conf.getBoolean(HConstants.CLUSTER_DISTRIBUTED, HConstants.DEFAULT_CLUSTER_DISTRIBUTED))
{code}

see: http://hadoop.apache.org/common/docs/current/api/org/apache/hadoop/conf/Configuration.html#getBoolean(java.lang.String, boolean)

We'd also end up changing HConstants.DEFAULT_CLUSTER_DISTRBUTED to be a boolean type instead of a string as well.


                
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch
>
>


--
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

        

[jira] [Updated] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Matteo Bertozzi (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Matteo Bertozzi updated HBASE-5638:
-----------------------------------

    Summary: Backport to 0.90 and 0.92 - NPE reading ZK config in HBase  (was: Backport HBASE-5633 to 0.90 and 0.92 - NPE reading ZK config in HBase)
    
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2
>
>


--
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

        

[jira] [Commented] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Hadoop QA (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13241170#comment-13241170 ] 

Hadoop QA commented on HBASE-5638:
----------------------------------

-1 overall.  Here are the results of testing the latest attachment 
  http://issues.apache.org/jira/secure/attachment/12520414/HBASE-5638-0.92-v1.patch
  against trunk revision .

    +1 @author.  The patch does not contain any @author tags.

    -1 tests included.  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.

    -1 patch.  The patch command could not apply the patch.

Console output: https://builds.apache.org/job/PreCommit-HBASE-Build/1341//console

This message is automatically generated.
                
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch, HBASE-5638-0.90-v1.patch, HBASE-5638-0.92-v1.patch, HBASE-5638-trunk-v1.patch
>
>


--
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

        

[jira] [Commented] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Hadoop QA (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13238634#comment-13238634 ] 

Hadoop QA commented on HBASE-5638:
----------------------------------

-1 overall.  Here are the results of testing the latest attachment 
  http://issues.apache.org/jira/secure/attachment/12519985/HBASE-5633-0.92.patch
  against trunk revision .

    +1 @author.  The patch does not contain any @author tags.

    -1 tests included.  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.

    -1 patch.  The patch command could not apply the patch.

Console output: https://builds.apache.org/job/PreCommit-HBASE-Build/1309//console

This message is automatically generated.
                
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch
>
>


--
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

        

[jira] [Updated] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Matteo Bertozzi (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Matteo Bertozzi updated HBASE-5638:
-----------------------------------

    Status: Patch Available  (was: Open)
    
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.92.1, 0.90.6
>            Reporter: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch
>
>


--
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

        

[jira] [Updated] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Matteo Bertozzi (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Matteo Bertozzi updated HBASE-5638:
-----------------------------------

    Attachment:     (was: HBASE-5638-0.90-v1.patch)
    
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch, HBASE-5638-0.90-v1.patch, HBASE-5638-0.92-v1.patch, HBASE-5638-trunk-v1.patch
>
>


--
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

        

[jira] [Updated] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Matteo Bertozzi (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Matteo Bertozzi updated HBASE-5638:
-----------------------------------

    Attachment:     (was: HBASE-5638-0.92-v1.patch)
    
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch, HBASE-5638-0.90-v1.patch, HBASE-5638-0.92-v1.patch, HBASE-5638-trunk-v1.patch
>
>


--
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

        

[jira] [Updated] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Matteo Bertozzi (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Matteo Bertozzi updated HBASE-5638:
-----------------------------------

    Attachment: HBASE-5638-trunk-v1.patch
    
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch, HBASE-5638-0.90-v1.patch, HBASE-5638-0.92-v1.patch, HBASE-5638-trunk-v1.patch
>
>


--
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

        

[jira] [Commented] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "stack (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13241530#comment-13241530 ] 

stack commented on HBASE-5638:
------------------------------

lgtm
                
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Assignee: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch, HBASE-5638-0.90-v1.patch, HBASE-5638-0.92-v1.patch, HBASE-5638-trunk-v1.patch
>
>


--
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

        

[jira] [Updated] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Matteo Bertozzi (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Matteo Bertozzi updated HBASE-5638:
-----------------------------------

    Attachment:     (was: HBASE-5638-trunk-v2.patch)
    
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Assignee: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch, HBASE-5638-0.90-v1.patch, HBASE-5638-0.90-v2.patch, HBASE-5638-0.92-v1.patch, HBASE-5638-0.92-v2.patch, HBASE-5638-trunk-v1.patch, HBASE-5638-trunk-v2.patch
>
>


--
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

        

[jira] [Commented] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Hudson (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13242448#comment-13242448 ] 

Hudson commented on HBASE-5638:
-------------------------------

Integrated in HBase-0.94-security #6 (See [https://builds.apache.org/job/HBase-0.94-security/6/])
    HBASE-5638 Readability improvements on HBASE-5633: NPE reading ZK config in HBase (Matteo Bertozzi) (Revision 1307086)

     Result = SUCCESS
jmhsieh : 
Files : 
* /hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase/HConstants.java
* /hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
* /hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase/zookeeper/ZKConfig.java

                
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Assignee: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2, 0.94.0, 0.94.1
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch, HBASE-5638-0.90-v1.patch, HBASE-5638-0.90-v2.patch, HBASE-5638-0.92-v1.patch, HBASE-5638-0.92-v2.patch, HBASE-5638-trunk-v1.patch, HBASE-5638-trunk-v2.patch
>
>


--
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

        

[jira] [Updated] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Matteo Bertozzi (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Matteo Bertozzi updated HBASE-5638:
-----------------------------------

    Attachment:     (was: HBASE-5638-trunk-v1.patch)
    
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Assignee: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch, HBASE-5638-0.90-v1.patch, HBASE-5638-0.92-v1.patch, HBASE-5638-trunk-v1.patch
>
>


--
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

        

[jira] [Updated] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Matteo Bertozzi (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Matteo Bertozzi updated HBASE-5638:
-----------------------------------

    Attachment: HBASE-5638-trunk-v2.patch
                HBASE-5638-0.90-v2.patch
                HBASE-5638-0.92-v2.patch

Improve the readability by explicit check against LOCAL or DISTRIBUTED constant
                
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Assignee: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch, HBASE-5638-0.90-v1.patch, HBASE-5638-0.90-v2.patch, HBASE-5638-0.92-v1.patch, HBASE-5638-0.92-v2.patch, HBASE-5638-trunk-v1.patch, HBASE-5638-trunk-v2.patch
>
>


--
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

        

[jira] [Updated] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Matteo Bertozzi (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Matteo Bertozzi updated HBASE-5638:
-----------------------------------

    Attachment: HBASE-5638-trunk-v1.patch
    
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Assignee: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch, HBASE-5638-0.90-v1.patch, HBASE-5638-0.92-v1.patch, HBASE-5638-trunk-v1.patch
>
>


--
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

        

[jira] [Commented] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Hudson (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13242474#comment-13242474 ] 

Hudson commented on HBASE-5638:
-------------------------------

Integrated in HBase-TRUNK #2698 (See [https://builds.apache.org/job/HBase-TRUNK/2698/])
    HBASE-5638 Readability improvements on HBASE-5633: NPE reading ZK config in HBase (Matteo Bertozzi) (Revision 1307085)

     Result = FAILURE
jmhsieh : 
Files : 
* /hbase/trunk/src/main/java/org/apache/hadoop/hbase/HConstants.java
* /hbase/trunk/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
* /hbase/trunk/src/main/java/org/apache/hadoop/hbase/zookeeper/ZKConfig.java

                
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Assignee: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2, 0.94.0, 0.94.1
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch, HBASE-5638-0.90-v1.patch, HBASE-5638-0.90-v2.patch, HBASE-5638-0.92-v1.patch, HBASE-5638-0.92-v2.patch, HBASE-5638-trunk-v1.patch, HBASE-5638-trunk-v2.patch
>
>


--
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

        

[jira] [Commented] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Hudson (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13246955#comment-13246955 ] 

Hudson commented on HBASE-5638:
-------------------------------

Integrated in HBase-0.92-security #104 (See [https://builds.apache.org/job/HBase-0.92-security/104/])
    HBASE-5638 Readability improvements and backport HBASE-5633: NPE reading ZK config in HBase (Matteo Bertozzi) (Revision 1307087)

     Result = FAILURE
jmhsieh : 
Files : 
* /hbase/branches/0.92/CHANGES.txt
* /hbase/branches/0.92/src/main/java/org/apache/hadoop/hbase/HConstants.java
* /hbase/branches/0.92/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
* /hbase/branches/0.92/src/main/java/org/apache/hadoop/hbase/zookeeper/ZKConfig.java

                
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Assignee: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2, 0.94.0, 0.96.0
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch, HBASE-5638-0.90-v1.patch, HBASE-5638-0.90-v2.patch, HBASE-5638-0.92-v1.patch, HBASE-5638-0.92-v2.patch, HBASE-5638-trunk-v1.patch, HBASE-5638-trunk-v2.patch
>
>


--
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

        

[jira] [Commented] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Hadoop QA (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13241153#comment-13241153 ] 

Hadoop QA commented on HBASE-5638:
----------------------------------

-1 overall.  Here are the results of testing the latest attachment 
  http://issues.apache.org/jira/secure/attachment/12520408/HBASE-5638-trunk-v1.patch
  against trunk revision .

    +1 @author.  The patch does not contain any @author tags.

    -1 tests included.  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.

    +1 javadoc.  The javadoc tool did not generate any warning messages.

    +1 javac.  The applied patch does not increase the total number of javac compiler warnings.

    -1 findbugs.  The patch appears to introduce 1 new Findbugs (version 1.3.9) warnings.

    +1 release audit.  The applied patch does not increase the total number of release audit warnings.

     -1 core tests.  The patch failed these unit tests:
                       org.apache.hadoop.hbase.mapreduce.TestImportTsv
                  org.apache.hadoop.hbase.mapred.TestTableMapReduce
                  org.apache.hadoop.hbase.mapreduce.TestHFileOutputFormat

Test results: https://builds.apache.org/job/PreCommit-HBASE-Build/1339//testReport/
Findbugs warnings: https://builds.apache.org/job/PreCommit-HBASE-Build/1339//artifact/trunk/patchprocess/newPatchFindbugsWarnings.html
Console output: https://builds.apache.org/job/PreCommit-HBASE-Build/1339//console

This message is automatically generated.
                
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch, HBASE-5638-0.90-v1.patch, HBASE-5638-0.92-v1.patch, HBASE-5638-trunk-v1.patch
>
>


--
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

        

[jira] [Updated] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Matteo Bertozzi (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Matteo Bertozzi updated HBASE-5638:
-----------------------------------

    Attachment:     (was: HBASE-5638-0.92-v2.patch)
    
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Assignee: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch, HBASE-5638-0.90-v1.patch, HBASE-5638-0.90-v2.patch, HBASE-5638-0.92-v1.patch, HBASE-5638-0.92-v2.patch, HBASE-5638-trunk-v1.patch, HBASE-5638-trunk-v2.patch
>
>


--
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

        

[jira] [Commented] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Jonathan Hsieh (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13241565#comment-13241565 ] 

Jonathan Hsieh commented on HBASE-5638:
---------------------------------------

Lgtm.  I'll do a quick test and commit to 0.90/0.92/0.94/trunk branches.
                
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Assignee: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch, HBASE-5638-0.90-v1.patch, HBASE-5638-0.90-v2.patch, HBASE-5638-0.92-v1.patch, HBASE-5638-0.92-v2.patch, HBASE-5638-trunk-v1.patch, HBASE-5638-trunk-v2.patch
>
>


--
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

        

[jira] [Commented] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Hadoop QA (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13241524#comment-13241524 ] 

Hadoop QA commented on HBASE-5638:
----------------------------------

-1 overall.  Here are the results of testing the latest attachment 
  http://issues.apache.org/jira/secure/attachment/12520466/HBASE-5638-trunk-v1.patch
  against trunk revision .

    +1 @author.  The patch does not contain any @author tags.

    -1 tests included.  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.

    +1 javadoc.  The javadoc tool did not generate any warning messages.

    +1 javac.  The applied patch does not increase the total number of javac compiler warnings.

    +1 findbugs.  The patch does not introduce any new Findbugs (version 1.3.9) warnings.

    +1 release audit.  The applied patch does not increase the total number of release audit warnings.

     -1 core tests.  The patch failed these unit tests:
                       org.apache.hadoop.hbase.mapreduce.TestImportTsv

Test results: https://builds.apache.org/job/PreCommit-HBASE-Build/1345//testReport/
Findbugs warnings: https://builds.apache.org/job/PreCommit-HBASE-Build/1345//artifact/trunk/patchprocess/newPatchFindbugsWarnings.html
Console output: https://builds.apache.org/job/PreCommit-HBASE-Build/1345//console

This message is automatically generated.
                
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Assignee: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch, HBASE-5638-0.90-v1.patch, HBASE-5638-0.92-v1.patch, HBASE-5638-trunk-v1.patch
>
>


--
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

        

[jira] [Updated] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Matteo Bertozzi (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Matteo Bertozzi updated HBASE-5638:
-----------------------------------

    Attachment: HBASE-5638-trunk-v2.patch
                HBASE-5638-0.92-v2.patch
                HBASE-5638-0.90-v2.patch
    
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Assignee: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch, HBASE-5638-0.90-v1.patch, HBASE-5638-0.90-v2.patch, HBASE-5638-0.92-v1.patch, HBASE-5638-0.92-v2.patch, HBASE-5638-trunk-v1.patch, HBASE-5638-trunk-v2.patch
>
>


--
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

        

[jira] [Updated] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Matteo Bertozzi (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Matteo Bertozzi updated HBASE-5638:
-----------------------------------

    Attachment: HBASE-5638-0.92-v1.patch
                HBASE-5638-0.90-v1.patch
    
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch, HBASE-5638-0.90-v1.patch, HBASE-5638-0.92-v1.patch, HBASE-5638-trunk-v1.patch
>
>


--
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

        

[jira] [Updated] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Jonathan Hsieh (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jonathan Hsieh updated HBASE-5638:
----------------------------------

       Resolution: Fixed
    Fix Version/s: 0.94.1
                   0.94.0
     Hadoop Flags: Reviewed
           Status: Resolved  (was: Patch Available)

Thanks Matteo, and thanks for review stack.
                
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Assignee: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2, 0.94.0, 0.94.1
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch, HBASE-5638-0.90-v1.patch, HBASE-5638-0.90-v2.patch, HBASE-5638-0.92-v1.patch, HBASE-5638-0.92-v2.patch, HBASE-5638-trunk-v1.patch, HBASE-5638-trunk-v2.patch
>
>


--
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

        

[jira] [Updated] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Matteo Bertozzi (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Matteo Bertozzi updated HBASE-5638:
-----------------------------------

    Attachment:     (was: HBASE-5638-0.90-v2.patch)
    
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Assignee: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch, HBASE-5638-0.90-v1.patch, HBASE-5638-0.90-v2.patch, HBASE-5638-0.92-v1.patch, HBASE-5638-0.92-v2.patch, HBASE-5638-trunk-v1.patch, HBASE-5638-trunk-v2.patch
>
>


--
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

        

[jira] [Commented] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Hudson (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13241924#comment-13241924 ] 

Hudson commented on HBASE-5638:
-------------------------------

Integrated in HBase-0.92 #343 (See [https://builds.apache.org/job/HBase-0.92/343/])
    HBASE-5638 Readability improvements and backport HBASE-5633: NPE reading ZK config in HBase (Matteo Bertozzi) (Revision 1307087)

     Result = SUCCESS
jmhsieh : 
Files : 
* /hbase/branches/0.92/CHANGES.txt
* /hbase/branches/0.92/src/main/java/org/apache/hadoop/hbase/HConstants.java
* /hbase/branches/0.92/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
* /hbase/branches/0.92/src/main/java/org/apache/hadoop/hbase/zookeeper/ZKConfig.java

                
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Assignee: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2, 0.94.0, 0.94.1
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch, HBASE-5638-0.90-v1.patch, HBASE-5638-0.90-v2.patch, HBASE-5638-0.92-v1.patch, HBASE-5638-0.92-v2.patch, HBASE-5638-trunk-v1.patch, HBASE-5638-trunk-v2.patch
>
>


--
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

        

[jira] [Updated] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Jonathan Hsieh (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jonathan Hsieh updated HBASE-5638:
----------------------------------

    Assignee: Matteo Bertozzi
    
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Assignee: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch, HBASE-5638-0.90-v1.patch, HBASE-5638-0.92-v1.patch, HBASE-5638-trunk-v1.patch
>
>


--
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

        

[jira] [Commented] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Hadoop QA (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13241169#comment-13241169 ] 

Hadoop QA commented on HBASE-5638:
----------------------------------

-1 overall.  Here are the results of testing the latest attachment 
  http://issues.apache.org/jira/secure/attachment/12520414/HBASE-5638-0.92-v1.patch
  against trunk revision .

    +1 @author.  The patch does not contain any @author tags.

    -1 tests included.  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.

    -1 patch.  The patch command could not apply the patch.

Console output: https://builds.apache.org/job/PreCommit-HBASE-Build/1340//console

This message is automatically generated.
                
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch, HBASE-5638-0.90-v1.patch, HBASE-5638-0.92-v1.patch, HBASE-5638-trunk-v1.patch
>
>


--
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

        

[jira] [Updated] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Lars Hofhansl (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Lars Hofhansl updated HBASE-5638:
---------------------------------

    Fix Version/s:     (was: 0.94.1)
                   0.96.0
    
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Assignee: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2, 0.94.0, 0.96.0
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch, HBASE-5638-0.90-v1.patch, HBASE-5638-0.90-v2.patch, HBASE-5638-0.92-v1.patch, HBASE-5638-0.92-v2.patch, HBASE-5638-trunk-v1.patch, HBASE-5638-trunk-v2.patch
>
>


--
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

        

[jira] [Updated] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Matteo Bertozzi (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Matteo Bertozzi updated HBASE-5638:
-----------------------------------

    Attachment:     (was: HBASE-5638-trunk-v1.patch)
    
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch, HBASE-5638-0.90-v1.patch, HBASE-5638-0.92-v1.patch
>
>


--
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

        

[jira] [Commented] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Hudson (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13241607#comment-13241607 ] 

Hudson commented on HBASE-5638:
-------------------------------

Integrated in HBase-0.94 #66 (See [https://builds.apache.org/job/HBase-0.94/66/])
    HBASE-5638 Readability improvements on HBASE-5633: NPE reading ZK config in HBase (Matteo Bertozzi) (Revision 1307086)

     Result = SUCCESS
jmhsieh : 
Files : 
* /hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase/HConstants.java
* /hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase/LocalHBaseCluster.java
* /hbase/branches/0.94/src/main/java/org/apache/hadoop/hbase/zookeeper/ZKConfig.java

                
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Assignee: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2, 0.94.0, 0.94.1
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch, HBASE-5638-0.90-v1.patch, HBASE-5638-0.90-v2.patch, HBASE-5638-0.92-v1.patch, HBASE-5638-0.92-v2.patch, HBASE-5638-trunk-v1.patch, HBASE-5638-trunk-v2.patch
>
>


--
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

        

[jira] [Updated] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Jonathan Hsieh (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jonathan Hsieh updated HBASE-5638:
----------------------------------

    Comment: was deleted

(was: -1 overall.  Here are the results of testing the latest attachment 
  http://issues.apache.org/jira/secure/attachment/12520414/HBASE-5638-0.92-v1.patch
  against trunk revision .

    +1 @author.  The patch does not contain any @author tags.

    -1 tests included.  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.

    -1 patch.  The patch command could not apply the patch.

Console output: https://builds.apache.org/job/PreCommit-HBASE-Build/1341//console

This message is automatically generated.)
    
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch, HBASE-5638-0.90-v1.patch, HBASE-5638-0.92-v1.patch, HBASE-5638-trunk-v1.patch
>
>


--
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

        

[jira] [Commented] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Hadoop QA (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13241602#comment-13241602 ] 

Hadoop QA commented on HBASE-5638:
----------------------------------

-1 overall.  Here are the results of testing the latest attachment 
  http://issues.apache.org/jira/secure/attachment/12520493/HBASE-5638-trunk-v2.patch
  against trunk revision .

    +1 @author.  The patch does not contain any @author tags.

    -1 tests included.  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.

    +1 javadoc.  The javadoc tool did not generate any warning messages.

    +1 javac.  The applied patch does not increase the total number of javac compiler warnings.

    +1 findbugs.  The patch does not introduce any new Findbugs (version 1.3.9) warnings.

    +1 release audit.  The applied patch does not increase the total number of release audit warnings.

     -1 core tests.  The patch failed these unit tests:
                       org.apache.hadoop.hbase.mapreduce.TestImportTsv
                  org.apache.hadoop.hbase.mapred.TestTableMapReduce
                  org.apache.hadoop.hbase.mapreduce.TestHFileOutputFormat

Test results: https://builds.apache.org/job/PreCommit-HBASE-Build/1346//testReport/
Findbugs warnings: https://builds.apache.org/job/PreCommit-HBASE-Build/1346//artifact/trunk/patchprocess/newPatchFindbugsWarnings.html
Console output: https://builds.apache.org/job/PreCommit-HBASE-Build/1346//console

This message is automatically generated.
                
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Assignee: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2, 0.94.0, 0.94.1
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch, HBASE-5638-0.90-v1.patch, HBASE-5638-0.90-v2.patch, HBASE-5638-0.92-v1.patch, HBASE-5638-0.92-v2.patch, HBASE-5638-trunk-v1.patch, HBASE-5638-trunk-v2.patch
>
>


--
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

        

[jira] [Updated] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Jonathan Hsieh (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jonathan Hsieh updated HBASE-5638:
----------------------------------

    Comment: was deleted

(was: -1 overall.  Here are the results of testing the latest attachment 
  http://issues.apache.org/jira/secure/attachment/12520414/HBASE-5638-0.92-v1.patch
  against trunk revision .

    +1 @author.  The patch does not contain any @author tags.

    -1 tests included.  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.

    -1 patch.  The patch command could not apply the patch.

Console output: https://builds.apache.org/job/PreCommit-HBASE-Build/1340//console

This message is automatically generated.)
    
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch, HBASE-5638-0.90-v1.patch, HBASE-5638-0.92-v1.patch, HBASE-5638-trunk-v1.patch
>
>


--
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

        

[jira] [Updated] (HBASE-5638) Backport to 0.90 and 0.92 - NPE reading ZK config in HBase

Posted by "Matteo Bertozzi (Updated) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HBASE-5638?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Matteo Bertozzi updated HBASE-5638:
-----------------------------------

    Attachment: HBASE-5638-trunk-v1.patch
                HBASE-5638-0.92-v1.patch
                HBASE-5638-0.90-v1.patch

patch updated for 0.90, 0.92 and trunk to use conf.getBoolean()
                
> Backport to 0.90 and 0.92 - NPE reading ZK config in HBase
> ----------------------------------------------------------
>
>                 Key: HBASE-5638
>                 URL: https://issues.apache.org/jira/browse/HBASE-5638
>             Project: HBase
>          Issue Type: Sub-task
>          Components: zookeeper
>    Affects Versions: 0.90.6, 0.92.1
>            Reporter: Matteo Bertozzi
>            Priority: Minor
>             Fix For: 0.90.7, 0.92.2
>
>         Attachments: HBASE-5633-0.90.patch, HBASE-5633-0.92.patch, HBASE-5638-0.90-v1.patch, HBASE-5638-0.92-v1.patch, HBASE-5638-trunk-v1.patch
>
>


--
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