- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我正在尝试学习 Hadoop,并且我已经达到了 Hadoop 权威指南中的 HBase 部分。我试图启动 HBase 但出现错误。有人可以给我分步指南吗?
opel@ubuntu:~$ zkServer.sh start
JMX enabled by default
Using config: /home/opel/zookeeper-3.4.6/bin/../conf/zoo.cfg
Starting zookeeper ... STARTED
opel@ubuntu:~$ start-hbase.sh
starting master, logging to /home/opel/hbase-0.94.20/logs/hbase-opel-master-ubuntu.out
opel@ubuntu:~$ hbase shell
HBase Shell; enter 'help<RETURN>' for list of supported commands.
Type "exit<RETURN>" to leave the HBase Shell
Version 0.94.20, r09c60d770f2869ca315910ba0f9a5ee9797b1edc, Fri May 23 22:00:41 PDT 2014
hbase(main):001:0> status
14/06/02 22:40:44 ERROR client.HConnectionManager$HConnectionImplementation: Check the value configured in 'zookeeper.znode.parent'. There could be a mismatch with the one configured in the master.
14/06/02 22:40:45 ERROR client.HConnectionManager$HConnectionImplementation: Check the value configured in 'zookeeper.znode.parent'. There could be a mismatch with the one configured in the master.
14/06/02 22:40:47 ERROR client.HConnectionManager$HConnectionImplementation: Check the value configured in 'zookeeper.znode.parent'. There could be a mismatch with the one configured in the master.
14/06/02 22:40:49 ERROR client.HConnectionManager$HConnectionImplementation: Check the value configured in 'zookeeper.znode.parent'. There could be a mismatch with the one configured in the master.
14/06/02 22:40:51 ERROR client.HConnectionManager$HConnectionImplementation: Check the value configured in 'zookeeper.znode.parent'. There could be a mismatch with the one configured in the master.
14/06/02 22:40:55 ERROR client.HConnectionManager$HConnectionImplementation: Check the value configured in 'zookeeper.znode.parent'. There could be a mismatch with the one configured in the master.
14/06/02 22:40:59 ERROR client.HConnectionManager$HConnectionImplementation: Check the value configured in 'zookeeper.znode.parent'. There could be a mismatch with the one configured in the master.
ERROR: org.apache.hadoop.hbase.MasterNotRunningException: Retried 7 times
Here is some help for this command:
Show cluster status. Can be 'summary', 'simple', or 'detailed'. The
default is 'summary'. Examples:
hbase> status
hbase> status 'simple'
hbase> status 'summary'
hbase> status 'detailed'
有什么问题吗?
最佳答案
我遇到了同样的问题。对我来说,解决方案是将以下属性添加到 hbase-site.xml
(对我来说,它可以在 /usr/lib/hbase/conf
目录下找到):
<configuration>
<property>
<name>zookeeper.znode.parent</name>
<value>/hbase-unsecure</value>
</property>
</configuration>
但这仅适用于独立模式。我仍然不知道如何在使用外部 ZooKeeper 时解决这个问题。
关于hadoop - HBase 错误 : zookeeper. znode.parent 不匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24008207/
我正在开发一个使用 ZooKeeper 作为数据存储的应用程序。对于应用程序中的其中一种方法,我需要使用乐观并发控制。比如我需要实现一个获取znode数据的get方法,我使用znode数据版本进行乐观
我刚开始阅读有关动物园管理员的信息。我对数据复制和数据模块感到困惑。 ZooKeeper 集成将包含多个节点(机器),其中一个领导者和其他人作为追随者。 数据模块是一个树形结构,每个节点为znode。
我正在使用 zookeeper 进行分布式锁定。用例需要锁定分层命名空间,因此我们使用持久性 znode。我们为此使用了 apache-curator。 问题是 znode 数量不断增加,性能会受到影
我想将kafka znodes设置在另一个znode而不是root上。 例如 kafka的默认znode是: /admin /brokers /cluster /config 但我想重新组织它们并将其
这是zookeeper监控的输出 zk_version 3.4.6-1569965, built on 02/20/2014 09:09 GMT zk_avg_latency 0
我已经在 ubuntu 12.04 上安装了 hadoop 2.2.0 & hbase-0.94.18。当我尝试运行命令时 create 't1','c1' 在 hbase shell 中,我得到以下
我按照说明设置 OpenTSDB:http://opentsdb.net/getting-started.html和 http://opentsdb.net/setup-hbase.html .在我使
以下是我的假设/疑问。如果我的理解有错误请指出 通过阅读文档,我了解到 Zookeeper 向 Leader 写入数据,然后将其复制到 Follower。读取请求可以由跟随者(从属)本身提供。因此读取
是否可以通过 Zookeeper CLI 读取带有空格的 znode? 我在区域下有 2 个值('us-west 1' 和 'us-east') [zk: localhost:2181(CONNEC
比如有一个znode路径A/B/C/D。我想在那个 znode 上存储一个字符串列表。显然,我可以使用将字符串列表连接到单个字符串中,然后将其序列化为字节数组,如下所示: curator.create
我正在尝试学习 Hadoop,并且我已经达到了 Hadoop 权威指南中的 HBase 部分。我试图启动 HBase 但出现错误。有人可以给我分步指南吗? opel@ubuntu:~$ zkServe
本文整理了Java中com.griddynamics.jagger.coordinator.zookeeper.ZNode.child()方法的一些代码示例,展示了ZNode.child()的具体用法
本文整理了Java中com.griddynamics.jagger.coordinator.zookeeper.ZNode.removeWithChildren()方法的一些代码示例,展示了ZNode
本文整理了Java中com.griddynamics.jagger.coordinator.zookeeper.ZNode.hasChild()方法的一些代码示例,展示了ZNode.hasChild(
本文整理了Java中com.griddynamics.jagger.coordinator.zookeeper.ZNode.createChild()方法的一些代码示例,展示了ZNode.create
本文整理了Java中org.apache.helix.store.zk.ZNode.addChildren()方法的一些代码示例,展示了ZNode.addChildren()的具体用法。这些代码示例主
本文整理了Java中org.apache.helix.store.zk.ZNode.getStat()方法的一些代码示例,展示了ZNode.getStat()的具体用法。这些代码示例主要来源于Gith
本文整理了Java中org.apache.helix.store.zk.ZNode.getChildSet()方法的一些代码示例,展示了ZNode.getChildSet()的具体用法。这些代码示例主
本文整理了Java中org.apache.helix.store.zk.ZNode.getData()方法的一些代码示例,展示了ZNode.getData()的具体用法。这些代码示例主要来源于Gith
我正在尝试创建一个持久的 ZNode 并存储我已处理的特定文件的行数。创建工作正常,从节点读取数据也是如此,但如果在相同的代码中,删除则不起作用。我会解释我的意思。 我创建了函数: setOrCrea
我是一名优秀的程序员,十分优秀!