hi,
I not sure which option you're meant to, in our env., using hbase-0.94.2,
but I can not find the option "hbase.master" in the configs
{code}
egrep -in --color "hbase\.master" /etc/hbase/conf/*
/etc/hbase/conf/hbase-site.xml:21: <name>hbase.master.port</name>
/etc/hbase/conf/hbase-site.xml:25: <name>hbase.master.info.port</name>
/etc/hbase/conf/hbase-site.xml:86: <name>hbase.master.keytab.file</name>
/etc/hbase/conf/hbase-site.xml:90:
<name>hbase.master.kerberos.principal</name>
/etc/hbase/conf/hbase-site.xml:94:
<name>hbase.master.kerberos.https.principal</name>
{code}
Also in the git branch
{code}
$ cd hbase
$ git status
# On branch 0.94
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
...
$ egrep -in -B 3 "version.0\.94.*" pom.xml
36- <groupId>org.apache.hbase</groupId>
37- <artifactId>hbase</artifactId>
38- <packaging>jar</packaging>
39: <version>0.94.13-SNAPSHOT</version>
$ egrep -inr "hbase\.master" conf/
# no any found
$ egrep -inr "hbase\.master" ./src/main/resources/
./src/main/resources/hbase-default.xml:37: <name>hbase.master.port</name>
./src/main/resources/hbase-default.xml:67:
<name>hbase.master.info.port</name>
./src/main/resources/hbase-default.xml:74:
<name>hbase.master.info.bindAddress</name>
./src/main/resources/hbase-default.xml:282:
<name>hbase.master.dns.interface</name>
./src/main/resources/hbase-default.xml:289:
<name>hbase.master.dns.nameserver</name>
./src/main/resources/hbase-default.xml:311:
<name>hbase.master.logcleaner.ttl</name>
./src/main/resources/hbase-default.xml:318:
<name>hbase.master.logcleaner.plugins</name>
./src/main/resources/hbase-default.xml:319:
<value>org.apache.hadoop.hbase.master.cleaner.TimeToLiveLogCleaner</value>
./src/main/resources/hbase-default.xml:571:
<name>hbase.master.keytab.file</name>
./src/main/resources/hbase-default.xml:578:
<name>hbase.master.kerberos.principal</name>
./src/main/resources/hbase-default.xml:951:
<name>hbase.master.hfilecleaner.plugins</name>
./src/main/resources/hbase-default.xml:952:
<value>org.apache.hadoop.hbase.master.cleaner.TimeToLiveHFileCleaner</value>
./src/main/resources/hbase-webapps/master/zk.jsp:30:
import="org.apache.hadoop.hbase.master.HMaster"
./src/main/resources/hbase-webapps/master/table.jsp:35:
import="org.apache.hadoop.hbase.master.HMaster"
./src/main/resources/hbase-webapps/master/table.jsp:47: boolean
showFragmentation =
conf.getBoolean("hbase.master.ui.fragmentation.enabled", false);
./src/main/resources/hbase-webapps/master/table.jsp:48: boolean readOnly =
conf.getBoolean("hbase.master.ui.readonly", false);
./src/main/resources/hbase-webapps/master/snapshot.jsp:27:
import="org.apache.hadoop.hbase.master.HMaster"
./src/main/resources/hbase-webapps/master/snapshot.jsp:40: boolean
readOnly = conf.getBoolean("hbase.master.ui.readonly", false);
./src/main/resources/hbase-webapps/master/tablesDetailed.jsp:24:
import="org.apache.hadoop.hbase.master.HMaster"
{code}
Best regards
takeshi
2013/10/4 Jay Vyas <[email protected]>
> What happened to the "hbase.master" parameter?
>
> I dont see it in the docs... was it deprecated?
>
> It appears to still have an effect in 94.7
>
> --
> Jay Vyas
> http://jayunit100.blogspot.com
>