Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am new to hbase and hadoop. I am trying to display the list of tables in hbase, but it shows me following errors:

hbase(main):007:0> list error

11/04/30 09:53:48 DEBUG client.HConnectionManager$TableServers: Cache hit for row <> in tableName .META.: location server 192.168.1.60:60020, location region name .META.,,1 test
1 row(s) in 0.0110 seconds

What could be cause of this problem?

hbase-site.xml

<configuration>
  <property>
    <name>hbase.zookeeper.property.dataDir</name>
    <value>${hbase.tmp.dir}/zookeeper</value>
    <description>Property from ZooKeeper's config zoo.cfg.
      The directory where the snapshot is stored.
    </description>
  </property>
  <property>
    <name>hbase.zookeeper.quorum</name>
    <value>slave</value>
    <description>Comma separated list of servers in the ZooKeeper Quorum.
      For example, "host1.mydomain.com,host2.mydomain.com,host3.mydomain.com".
      By default this is set to localhost for local and pseudo-distributed modes
      of operation. For a fully-distributed setup, this should be set to a full
      list of ZooKeeper quorum servers. If HBASE_MANAGES_ZK is set in hbase-env.sh
      this is the list of servers which we will start/stop ZooKeeper on.
    </description>
  </property>
  <property>
    <name>hbase.rootdir</name>
    <value>hdfs://master:54310/hbase</value>
    <description>The directory shared by region servers.
      Should be fully-qualified to include the filesystem to use.
      E.g: hdfs://NAMENODE_SERVER:PORT/HBASE_ROOTDIR
    </description>
  </property>
  <property>
    <name>hbase.cluster.distributed</name>
    <value>true</value>
    <description>The mode the cluster will be in. Possible values are
      false: standalone and pseudo-distributed setups with managed
      Zookeeper true: fully-distributed with unmanaged Zookeeper
      Quorum (see hbase-env.sh)
    </description>
  </property>
</configuration>
share|improve this question
What version of HBase and Hadoop you are running? What is in the logs: /var/log/hbase/ ? How have you configured HBase? – Wojtek Apr 30 '11 at 7:17
@ Wojtek : version of hadoop and hbase is 0.20.2. – priyaudupi May 1 '11 at 4:05

closed as off topic by Jeff Atwood May 7 '11 at 11:16

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

Browse other questions tagged or ask your own question.