gpt4 book ai didi

eclipse - 在eclipse上找不到hbase jar

转载 作者:行者123 更新时间:2023-12-02 20:54:13 29 4
gpt4 key购买 nike

我想通过eclipse在hbase上运行一个简单程序,然后执行以下步骤:

https://www.guru99.com/handling-tables-hbase.html

但是当我在自己身上添加外部jar 时,hbase-version.jar和hadoop-version-core.jar不在我的/ hbase / lib中
这两个 jar 重要吗?

我在哪里可以买到这两个 jar ?

最佳答案

您可以获取hadoop核心jar maven repository和hbase jar maven repository

[要么]

请将您的项目转换为Maven。

在pom.xml中添加以下依赖项

Hadoop核心 jar

<!-- https://mvnrepository.com/artifact/org.apache.hadoop/hadoop-core -->
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-core</artifactId>
<version>1.2.1</version>
</dependency>

HBase jar
<!-- https://mvnrepository.com/artifact/org.apache.hbase/hbase -->
<dependency>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase</artifactId>
<version>0.92.1</version>
</dependency>

是的,两个 jar 都很重要。 Hadoop核心jar包含诸如TaskTracker,JobTracker,InputSplit等核心API。

HBase jar包含核心API,例如Zookeeper,rest,thrift,mapreduce等。

关于eclipse - 在eclipse上找不到hbase jar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45114272/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com