如何在JavaEclipse中通过hbase配置titan?

hm2xizp9  于 2021-06-09  发布在  Hbase
关注(0)|答案(1)|浏览(267)

使用教程中给出的以下命令:http://s3.thinkaurelius.com/docs/titan/0.5.0/hbase.html

TitanGraph graph = TitanFactory.build()
                .set("storage.backend","hbase")
                .open();

使用maven依赖项:

<dependency>
            <groupId>com.thinkaurelius.titan</groupId>
            <artifactId>titan-hbase</artifactId>
            <version>${titan.version}</version>
        </dependency>

显示以下错误

Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/hadoop/hbase/MasterNotRunningException
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:264)
    at com.thinkaurelius.titan.util.system.ConfigurationUtil.instantiate(ConfigurationUtil.java:42)
    at com.thinkaurelius.titan.diskstorage.Backend.getImplementationClass(Backend.java:479)
    at com.thinkaurelius.titan.diskstorage.Backend.getStorageManager(Backend.java:413)
    at com.thinkaurelius.titan.graphdb.configuration.GraphDatabaseConfiguration.<init>(GraphDatabaseConfiguration.java:1320)
    at com.thinkaurelius.titan.core.TitanFactory.open(TitanFactory.java:94)
    at com.thinkaurelius.titan.core.TitanFactory$Builder.open(TitanFactory.java:135)
    at pluradj.titan.tinkerpop3.example.JavaExample2.main(JavaExample2.java:26)
Caused by: java.lang.ClassNotFoundException: org.apache.hadoop.hbase.MasterNotRunningException
    at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
    ... 9 more

如果可能的话,你能告诉Cassandra同样的情况吗。

y53ybaqx

y53ybaqx1#

看看如何在eclipse中设置运行时类路径:如何在eclipse4.2中设置运行时类路径?
由于noclassdeffounderror异常,运行时类路径似乎缺少JAR。对于此特定错误,请从hbase安装中找到hbase lib目录,并将其添加到类路径中。
如果使用cassandra,则需要为cassandra适当地设置类路径。
titan的hbase客户端配置接受来自hbase-site.xml的任意键(如果它在类路径上),我建议您也将其放在您的路径中。

相关问题