You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-dev@hadoop.apache.org by "Jim Kellerman (JIRA)" <ji...@apache.org> on 2007/04/21 00:55:15 UTC

[jira] Created: (HADOOP-1282) HBase code update.

HBase code update.
------------------

                 Key: HADOOP-1282
                 URL: https://issues.apache.org/jira/browse/HADOOP-1282
             Project: Hadoop
          Issue Type: New Feature
          Components: contrib/hbase
            Reporter: Jim Kellerman
         Assigned To: Jim Kellerman


This issue will track the contribution of the next update for HBase

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HADOOP-1282) HBase code update.

Posted by "Jim Kellerman (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HADOOP-1282?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12490494 ] 

Jim Kellerman commented on HADOOP-1282:
---------------------------------------

Please commit this to contrib at your earliest convenience. Thanks!

> HBase code update.
> ------------------
>
>                 Key: HADOOP-1282
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1282
>             Project: Hadoop
>          Issue Type: New Feature
>          Components: contrib/hbase
>            Reporter: Jim Kellerman
>         Assigned To: Jim Kellerman
>         Attachments: patch.txt, patch.txt
>
>
> This issue will track the contribution of the next update for HBase

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HADOOP-1282) HBase code update.

Posted by "Doug Cutting (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-1282?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Doug Cutting updated HADOOP-1282:
---------------------------------

       Resolution: Fixed
    Fix Version/s: 0.13.0
           Status: Resolved  (was: Patch Available)

I just committed this.  Thanks, Jim!

> HBase code update.
> ------------------
>
>                 Key: HADOOP-1282
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1282
>             Project: Hadoop
>          Issue Type: New Feature
>          Components: contrib/hbase
>            Reporter: Jim Kellerman
>         Assigned To: Jim Kellerman
>             Fix For: 0.13.0
>
>         Attachments: patch.txt, patch.txt
>
>
> This issue will track the contribution of the next update for HBase

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HADOOP-1282) HBase code update.

Posted by "Jim Kellerman (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-1282?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jim Kellerman updated HADOOP-1282:
----------------------------------

    Status: Patch Available  (was: In Progress)

> HBase code update.
> ------------------
>
>                 Key: HADOOP-1282
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1282
>             Project: Hadoop
>          Issue Type: New Feature
>          Components: contrib/hbase
>            Reporter: Jim Kellerman
>         Assigned To: Jim Kellerman
>         Attachments: patch.txt, patch.txt
>
>
> This issue will track the contribution of the next update for HBase

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HADOOP-1282) HBase code update.

Posted by "udanax (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HADOOP-1282?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12496510 ] 

udanax commented on HADOOP-1282:
--------------------------------

I have a question about write a simple sum formula of table row counts, 
and total column counts of specific columnfamily in Hbase.

should i counting in a while loop?
I wanna make scheme of partitioning matrices for parallel computation.


> HBase code update.
> ------------------
>
>                 Key: HADOOP-1282
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1282
>             Project: Hadoop
>          Issue Type: New Feature
>          Components: contrib/hbase
>            Reporter: Jim Kellerman
>         Assigned To: Jim Kellerman
>             Fix For: 0.13.0
>
>         Attachments: patch.txt, patch.txt
>
>
> This issue will track the contribution of the next update for HBase

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Work started: (HADOOP-1282) HBase code update.

Posted by "Jim Kellerman (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-1282?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Work on HADOOP-1282 started by Jim Kellerman.

> HBase code update.
> ------------------
>
>                 Key: HADOOP-1282
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1282
>             Project: Hadoop
>          Issue Type: New Feature
>          Components: contrib/hbase
>            Reporter: Jim Kellerman
>         Assigned To: Jim Kellerman
>         Attachments: patch.txt
>
>
> This issue will track the contribution of the next update for HBase

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HADOOP-1282) HBase code update.

Posted by "Jim Kellerman (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HADOOP-1282?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12490476 ] 

Jim Kellerman commented on HADOOP-1282:
---------------------------------------

This is HBase 0.0.0-1

Changes since https://issues.apache.org/jira/browse/HADOOP-1045

- Replace locking implementation with ReadWriteLock from
  java.util.concurrent.lock.
- Added Exception LockException and a test for it.
- Added test for unregistered columns and bad lockids.
- Added unit test for HMemcache.
- More comments and Javadoc.
- Added validation of values for testGetFull. (testScanner)
- Added main programs.
- Remove subclassing of HGlobals (It's all statics. Make static
  references for now). 
- HStore.java: If no mapfiles, return (Was NPE'ing).
- conf/hbase-default.xml Added first cut at hbase defaults.
- LabelledData.java (getDat): Renamed as getData. 
- Added MiniHBaseCluster.java - successfully bootstrapped and started
  HMaster and HRegionServer serving ROOT and META regions.


> HBase code update.
> ------------------
>
>                 Key: HADOOP-1282
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1282
>             Project: Hadoop
>          Issue Type: New Feature
>          Components: contrib/hbase
>            Reporter: Jim Kellerman
>         Assigned To: Jim Kellerman
>
> This issue will track the contribution of the next update for HBase

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Work started: (HADOOP-1282) HBase code update.

Posted by "Jim Kellerman (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-1282?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Work on HADOOP-1282 started by Jim Kellerman.

> HBase code update.
> ------------------
>
>                 Key: HADOOP-1282
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1282
>             Project: Hadoop
>          Issue Type: New Feature
>          Components: contrib/hbase
>            Reporter: Jim Kellerman
>         Assigned To: Jim Kellerman
>
> This issue will track the contribution of the next update for HBase

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HADOOP-1282) HBase code update.

Posted by "Jim Kellerman (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-1282?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jim Kellerman updated HADOOP-1282:
----------------------------------

    Attachment: patch.txt

Patch to upgrade existing code to this version.

> HBase code update.
> ------------------
>
>                 Key: HADOOP-1282
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1282
>             Project: Hadoop
>          Issue Type: New Feature
>          Components: contrib/hbase
>            Reporter: Jim Kellerman
>         Assigned To: Jim Kellerman
>         Attachments: patch.txt
>
>
> This issue will track the contribution of the next update for HBase

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HADOOP-1282) HBase code update.

Posted by "Hadoop QA (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HADOOP-1282?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12490479 ] 

Hadoop QA commented on HADOOP-1282:
-----------------------------------

-1, could not apply patch.

The patch command could not apply the latest attachment http://issues.apache.org/jira/secure/attachment/12355969/patch.txt as a patch to trunk revision r530556.

Console output: http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/69/console

Please note that this message is automatically generated and may represent a problem with the automation system and not the patch.

> HBase code update.
> ------------------
>
>                 Key: HADOOP-1282
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1282
>             Project: Hadoop
>          Issue Type: New Feature
>          Components: contrib/hbase
>            Reporter: Jim Kellerman
>         Assigned To: Jim Kellerman
>         Attachments: patch.txt
>
>
> This issue will track the contribution of the next update for HBase

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HADOOP-1282) HBase code update.

Posted by "Jim Kellerman (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-1282?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jim Kellerman updated HADOOP-1282:
----------------------------------

    Status: Patch Available  (was: In Progress)

Latest HBase code.

> HBase code update.
> ------------------
>
>                 Key: HADOOP-1282
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1282
>             Project: Hadoop
>          Issue Type: New Feature
>          Components: contrib/hbase
>            Reporter: Jim Kellerman
>         Assigned To: Jim Kellerman
>         Attachments: patch.txt
>
>
> This issue will track the contribution of the next update for HBase

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HADOOP-1282) HBase code update.

Posted by "Hadoop QA (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HADOOP-1282?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12491608 ] 

Hadoop QA commented on HADOOP-1282:
-----------------------------------

Integrated in Hadoop-Nightly #69 (See http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Nightly/69/)

> HBase code update.
> ------------------
>
>                 Key: HADOOP-1282
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1282
>             Project: Hadoop
>          Issue Type: New Feature
>          Components: contrib/hbase
>            Reporter: Jim Kellerman
>         Assigned To: Jim Kellerman
>             Fix For: 0.13.0
>
>         Attachments: patch.txt, patch.txt
>
>
> This issue will track the contribution of the next update for HBase

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HADOOP-1282) HBase code update.

Posted by "Jim Kellerman (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-1282?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jim Kellerman updated HADOOP-1282:
----------------------------------

    Status: Open  (was: Patch Available)

For some reason, it does not work against trunk build.

Fixing...

> HBase code update.
> ------------------
>
>                 Key: HADOOP-1282
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1282
>             Project: Hadoop
>          Issue Type: New Feature
>          Components: contrib/hbase
>            Reporter: Jim Kellerman
>         Assigned To: Jim Kellerman
>         Attachments: patch.txt
>
>
> This issue will track the contribution of the next update for HBase

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HADOOP-1282) HBase code update.

Posted by "Jim Kellerman (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-1282?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jim Kellerman updated HADOOP-1282:
----------------------------------

    Attachment: patch.txt

This patch *should* work...

> HBase code update.
> ------------------
>
>                 Key: HADOOP-1282
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1282
>             Project: Hadoop
>          Issue Type: New Feature
>          Components: contrib/hbase
>            Reporter: Jim Kellerman
>         Assigned To: Jim Kellerman
>         Attachments: patch.txt, patch.txt
>
>
> This issue will track the contribution of the next update for HBase

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HADOOP-1282) HBase code update.

Posted by "Hadoop QA (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HADOOP-1282?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12490492 ] 

Hadoop QA commented on HADOOP-1282:
-----------------------------------

+1

http://issues.apache.org/jira/secure/attachment/12355970/patch.txt applied and successfully tested against trunk revision r530556.

Test results:   http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/70/testReport/
Console output: http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/70/console

> HBase code update.
> ------------------
>
>                 Key: HADOOP-1282
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1282
>             Project: Hadoop
>          Issue Type: New Feature
>          Components: contrib/hbase
>            Reporter: Jim Kellerman
>         Assigned To: Jim Kellerman
>         Attachments: patch.txt, patch.txt
>
>
> This issue will track the contribution of the next update for HBase

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.