帮助:org.apache.hadoop.hbase.MasterNotRunningException 12.34.56.78:60000

发布于 2024-10-15 19:20:15 字数 221 浏览 2 评论 0原文

我正在编写一个小型 Java 应用程序来连接到 HBase 节点。 ZooKeeper连接成功,但后来,我系统地收到以下错误(当然我已经更改了我的IP地址):

org.apache.hadoop.hbase.MasterNotRunningException 12.34.56.78:60000

有谁知道发生了什么以及如何解决这个问题?

谢谢!

I am writting a small Java application to connect to a HBase node. The ZooKeeper connection is successful, but later, I systematically get the following error (I have changed my IP address of course):

org.apache.hadoop.hbase.MasterNotRunningException 12.34.56.78:60000

Does anyone know what is happening and how to solve this issue?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蓝眼泪 2024-10-22 19:20:15

好的,解决了这个问题。在有人自杀之前... ->该问题是由中央maven存储库中可用的HBase.jar版本(当前为0.90.xx)与Cloudera的CDH3安装包(0.89.xx)使用的版本不匹配引起的。

主要问题是 Cloudera 编译了自己的 Hbase.jar,而这些文件无法从中央存储库中获得。但是,Cloudera 可以从以下位置获取它们:

<repositories>
    <repository>
        <id>cloudera</id>
        <url>https://repository.cloudera.com/content/groups/public/</url>
    </repository>
</repositories>

要查找应用程序所需的 HBase 版本,请打开 http://your .node.ip.地址:60010。对于 CDH3Beta3,它是 0.89.20100924-28。然后,将其作为依赖项添加到您的 pom.xml 中:

<dependency>
    <groupId>org.apache.hbase</groupId>
    <artifactId>hbase</artifactId>
    <version>0.89.20100924-28</version>
</dependency>

Et voila!

Ok, solved that issue. Before someone commits suicide... -> the problem is caused by a mismatch between the HBase.jar versions available in the central maven repository (currently 0.90.xx) and those used by Cloudera's CDH3 installation package (0.89.xx).

The main issue is that Cloudera compiles its own Hbase.jar and these are not available from the central repository. But, Cloudera makes them available from:

<repositories>
    <repository>
        <id>cloudera</id>
        <url>https://repository.cloudera.com/content/groups/public/</url>
    </repository>
</repositories>

To find the HBase version you need for your application, open http://your.node.ip.address:60010. For CDH3Beta3, it is 0.89.20100924-28. Then, add it in your pom.xml as a dependency:

<dependency>
    <groupId>org.apache.hbase</groupId>
    <artifactId>hbase</artifactId>
    <version>0.89.20100924-28</version>
</dependency>

Et voila!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文