You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "LN (JIRA)" <ji...@apache.org> on 2008/06/12 08:13:45 UTC

[jira] Created: (HBASE-680) config parameter hbase.io.index.interval should be hbase.index.interval, accroding to HBaseMapFile.HbaseWriter

config parameter hbase.io.index.interval  should be hbase.index.interval, accroding to HBaseMapFile.HbaseWriter
---------------------------------------------------------------------------------------------------------------

                 Key: HBASE-680
                 URL: https://issues.apache.org/jira/browse/HBASE-680
             Project: Hadoop HBase
          Issue Type: Bug
    Affects Versions: 0.1.2
         Environment: it's a mistack in source code or default configuration fail.
            Reporter: LN


in conf/hbase-default.xml and FAQ, there has a  performance tuning parameter "hbase.io.index.interval", but can't find any usage in sources. instead, HStoreFile.java #585 using "hbase.index.interval" to set mapfile index interval (setIndexInterval). so i think  HStoreFile.java mistyped the parameter name.


 

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


[jira] Resolved: (HBASE-680) config parameter hbase.io.index.interval should be hbase.index.interval, accroding to HBaseMapFile.HbaseWriter

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

stack resolved HBASE-680.
-------------------------

       Resolution: Fixed
    Fix Version/s: 0.2.0

Committed below:

{code}
Index: src/java/org/apache/hadoop/hbase/regionserver/HStoreFile.java
===================================================================
--- src/java/org/apache/hadoop/hbase/regionserver/HStoreFile.java       (revision 667158)
+++ src/java/org/apache/hadoop/hbase/regionserver/HStoreFile.java       (working copy)
@@ -707,7 +707,7 @@
         // Default for mapfiles is 128.  Makes random reads faster if we
         // have more keys indexed and we're not 'next'-ing around in the
         // mapfile.
-        setIndexInterval(conf.getInt("hbase.index.interval", 128));
+        setIndexInterval(conf.getInt("hbase.io.index.interval", 128));
       }
     } 
   } 
{code}

Thanks for reporting issue LN

> config parameter hbase.io.index.interval  should be hbase.index.interval, accroding to HBaseMapFile.HbaseWriter
> ---------------------------------------------------------------------------------------------------------------
>
>                 Key: HBASE-680
>                 URL: https://issues.apache.org/jira/browse/HBASE-680
>             Project: Hadoop HBase
>          Issue Type: Bug
>          Components: regionserver
>    Affects Versions: 0.1.2
>         Environment: it's a mistack in source code or default configuration fail.
>            Reporter: LN
>            Priority: Minor
>             Fix For: 0.2.0
>
>
> in conf/hbase-default.xml and FAQ, there has a  performance tuning parameter "hbase.io.index.interval", but can't find any usage in sources. instead, HStoreFile.java #585 using "hbase.index.interval" to set mapfile index interval (setIndexInterval). so i think  HStoreFile.java mistyped the parameter name.
> this mistake will make users thinkgs "hbase.io.index.interval" useless. 

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


[jira] Updated: (HBASE-680) config parameter hbase.io.index.interval should be hbase.index.interval, accroding to HBaseMapFile.HbaseWriter

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

stack updated HBASE-680:
------------------------

    Fix Version/s: 0.2.0

Committed on branch too.

> config parameter hbase.io.index.interval  should be hbase.index.interval, accroding to HBaseMapFile.HbaseWriter
> ---------------------------------------------------------------------------------------------------------------
>
>                 Key: HBASE-680
>                 URL: https://issues.apache.org/jira/browse/HBASE-680
>             Project: Hadoop HBase
>          Issue Type: Bug
>          Components: regionserver
>    Affects Versions: 0.1.2
>         Environment: it's a mistack in source code or default configuration fail.
>            Reporter: LN
>            Priority: Minor
>             Fix For: 0.1.3, 0.2.0
>
>
> in conf/hbase-default.xml and FAQ, there has a  performance tuning parameter "hbase.io.index.interval", but can't find any usage in sources. instead, HStoreFile.java #585 using "hbase.index.interval" to set mapfile index interval (setIndexInterval). so i think  HStoreFile.java mistyped the parameter name.
> this mistake will make users thinkgs "hbase.io.index.interval" useless. 

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


[jira] Updated: (HBASE-680) config parameter hbase.io.index.interval should be hbase.index.interval, accroding to HBaseMapFile.HbaseWriter

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

LN updated HBASE-680:
---------------------

    Component/s: regionserver
       Priority: Minor  (was: Major)
    Description: 
in conf/hbase-default.xml and FAQ, there has a  performance tuning parameter "hbase.io.index.interval", but can't find any usage in sources. instead, HStoreFile.java #585 using "hbase.index.interval" to set mapfile index interval (setIndexInterval). so i think  HStoreFile.java mistyped the parameter name.

this mistake will make users thinkgs "hbase.io.index.interval" useless. 

  was:
in conf/hbase-default.xml and FAQ, there has a  performance tuning parameter "hbase.io.index.interval", but can't find any usage in sources. instead, HStoreFile.java #585 using "hbase.index.interval" to set mapfile index interval (setIndexInterval). so i think  HStoreFile.java mistyped the parameter name.


 


> config parameter hbase.io.index.interval  should be hbase.index.interval, accroding to HBaseMapFile.HbaseWriter
> ---------------------------------------------------------------------------------------------------------------
>
>                 Key: HBASE-680
>                 URL: https://issues.apache.org/jira/browse/HBASE-680
>             Project: Hadoop HBase
>          Issue Type: Bug
>          Components: regionserver
>    Affects Versions: 0.1.2
>         Environment: it's a mistack in source code or default configuration fail.
>            Reporter: LN
>            Priority: Minor
>
> in conf/hbase-default.xml and FAQ, there has a  performance tuning parameter "hbase.io.index.interval", but can't find any usage in sources. instead, HStoreFile.java #585 using "hbase.index.interval" to set mapfile index interval (setIndexInterval). so i think  HStoreFile.java mistyped the parameter name.
> this mistake will make users thinkgs "hbase.io.index.interval" useless. 

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


[jira] Updated: (HBASE-680) config parameter hbase.io.index.interval should be hbase.index.interval, accroding to HBaseMapFile.HbaseWriter

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

stack updated HBASE-680:
------------------------

    Fix Version/s:     (was: 0.2.0)
                   0.1.3

Should put this on the branch too... include in 0.1.3?

> config parameter hbase.io.index.interval  should be hbase.index.interval, accroding to HBaseMapFile.HbaseWriter
> ---------------------------------------------------------------------------------------------------------------
>
>                 Key: HBASE-680
>                 URL: https://issues.apache.org/jira/browse/HBASE-680
>             Project: Hadoop HBase
>          Issue Type: Bug
>          Components: regionserver
>    Affects Versions: 0.1.2
>         Environment: it's a mistack in source code or default configuration fail.
>            Reporter: LN
>            Priority: Minor
>             Fix For: 0.1.3
>
>
> in conf/hbase-default.xml and FAQ, there has a  performance tuning parameter "hbase.io.index.interval", but can't find any usage in sources. instead, HStoreFile.java #585 using "hbase.index.interval" to set mapfile index interval (setIndexInterval). so i think  HStoreFile.java mistyped the parameter name.
> this mistake will make users thinkgs "hbase.io.index.interval" useless. 

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