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 "stack (JIRA)" <ji...@apache.org> on 2007/09/10 20:57:29 UTC

[jira] Created: (HADOOP-1868) [hbase] Make default configuration more responsive

[hbase] Make default configuration more responsive
--------------------------------------------------

                 Key: HADOOP-1868
                 URL: https://issues.apache.org/jira/browse/HADOOP-1868
             Project: Hadoop
          Issue Type: Improvement
          Components: contrib/hbase
            Reporter: stack
            Priority: Minor
             Fix For: 0.15.0


Default configuration is not very first-time user friendly.  Creating a table takes 30 seconds on my desktop.  The bulk of the time is hbase just sitting in the sleep it does between wakes looking for work.  Hbase can be made more responsive by  tuning down a couple of parameters without compromizing operation on single node up to small cluster size (10s of machines).

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


[jira] Updated: (HADOOP-1868) [hbase] Make default configuration more responsive

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

stack updated HADOOP-1868:
--------------------------

    Status: Patch Available  (was: Open)

Trying against hudson

> [hbase] Make default configuration more responsive
> --------------------------------------------------
>
>                 Key: HADOOP-1868
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1868
>             Project: Hadoop
>          Issue Type: Improvement
>          Components: contrib/hbase
>            Reporter: stack
>            Priority: Minor
>             Fix For: 0.15.0
>
>         Attachments: responsive.txt
>
>
> Default configuration is not very first-time user friendly.  Creating a table takes 30 seconds on my desktop.  The bulk of the time is hbase just sitting in the sleep it does between wakes looking for work.  Hbase can be made more responsive by  tuning down a couple of parameters without compromizing operation on single node up to small cluster size (10s of machines).

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


[jira] Commented: (HADOOP-1868) [hbase] Make default configuration more responsive

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

Hadoop QA commented on HADOOP-1868:
-----------------------------------

+1

http://issues.apache.org/jira/secure/attachment/12365495/responsive.txt applied and successfully tested against trunk revision r574331.

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

> [hbase] Make default configuration more responsive
> --------------------------------------------------
>
>                 Key: HADOOP-1868
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1868
>             Project: Hadoop
>          Issue Type: Improvement
>          Components: contrib/hbase
>            Reporter: stack
>            Priority: Minor
>             Fix For: 0.15.0
>
>         Attachments: responsive.txt
>
>
> Default configuration is not very first-time user friendly.  Creating a table takes 30 seconds on my desktop.  The bulk of the time is hbase just sitting in the sleep it does between wakes looking for work.  Hbase can be made more responsive by  tuning down a couple of parameters without compromizing operation on single node up to small cluster size (10s of machines).

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


[jira] Updated: (HADOOP-1868) [hbase] Make default configuration more responsive

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

stack updated HADOOP-1868:
--------------------------

    Attachment: responsive.txt

Here's a patch to change two parameters.  Tables are now created and dropped in 10 seconds rather than 30.  I also tried these params on our small cluster under load.

{code}
     <name>hbase.client.pause</name>
-    <value>30000</value>
+    <value>10000</value>
     <description>General client pause value.  Used mostly as value to wait
     before running a retry of a failed get, region lookup, etc.</description>
   </property>
@@ -102,7 +102,7 @@
   </property>
   <property>
     <name>hbase.regionserver.msginterval</name>
-    <value>10000</value>
+    <value>3000</value>
{code}

> [hbase] Make default configuration more responsive
> --------------------------------------------------
>
>                 Key: HADOOP-1868
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1868
>             Project: Hadoop
>          Issue Type: Improvement
>          Components: contrib/hbase
>            Reporter: stack
>            Priority: Minor
>             Fix For: 0.15.0
>
>         Attachments: responsive.txt
>
>
> Default configuration is not very first-time user friendly.  Creating a table takes 30 seconds on my desktop.  The bulk of the time is hbase just sitting in the sleep it does between wakes looking for work.  Hbase can be made more responsive by  tuning down a couple of parameters without compromizing operation on single node up to small cluster size (10s of machines).

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


[jira] Updated: (HADOOP-1868) [hbase] Make default configuration more responsive

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

stack updated HADOOP-1868:
--------------------------

    Resolution: Fixed
        Status: Resolved  (was: Patch Available)

Committed.  Resolving...

> [hbase] Make default configuration more responsive
> --------------------------------------------------
>
>                 Key: HADOOP-1868
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1868
>             Project: Hadoop
>          Issue Type: Improvement
>          Components: contrib/hbase
>            Reporter: stack
>            Priority: Minor
>             Fix For: 0.15.0
>
>         Attachments: responsive.txt
>
>
> Default configuration is not very first-time user friendly.  Creating a table takes 30 seconds on my desktop.  The bulk of the time is hbase just sitting in the sleep it does between wakes looking for work.  Hbase can be made more responsive by  tuning down a couple of parameters without compromizing operation on single node up to small cluster size (10s of machines).

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