Dear Wiki user, You have subscribed to a wiki page or wiki category on "Hadoop Wiki" for change notification.
The following page has been changed by AlexNewman: http://wiki.apache.org/hadoop/Hbase/FAQ ------------------------------------------------------------------------------ 1. [#17 Can HBase development be done on windows?] 1. [#18 Please explain HBase version numbering?] 1. [#19 What version of Hadoop do I need to run HBase?] - + 1. [#20 HBase seems to not pull in my hadoop-site.xml information for HDFS, what's wrong] == Answers == @@ -186, +186 @@ Also note that after HBase-0.2.x, the HBase release numbering schema will change to align with the Hadoop release number on which it depends. + '''20 [[Anchor(20)]] HBase seems to not pull in my hadoop-site.xml information for HDFS, what's wrong''' + + Nothing is wrong, HBase merely has it's own set of configuration for use of the hdfs. Just pull in your options, for instance + {{{ + <property> + <name>dfs.replication</name> + <value>2</value> + </property> + }}} + could be added to the hbase-site.xml file to require that hbase only creates two instances for each block of data. +
