找不到导入的giraph包的jar

relj7zay  于 2021-06-02  发布在  Hadoop
关注(0)|答案(1)|浏览(369)

我试图从eclipse运行sssp giraph程序。但是我不能进口下列包裹

import org.apache.giraph.graph.BasicVertex;
import org.apache.giraph.graph.BspUtils;
import org.apache.giraph.graph.GiraphJob;
import org.apache.giraph.graph.EdgeListVertex;
import org.apache.giraph.graph.VertexReader;
import org.apache.giraph.graph.VertexWriter;
import org.apache.giraph.lib.TextVertexInputFormat;
import org.apache.giraph.lib.TextVertexInputFormat.TextVertexReader;
import org.apache.giraph.lib.TextVertexOutputFormat;
import org.apache.giraph.lib.TextVertexOutputFormat.TextVertexWriter;

我已经按照giraph站点中的说明构建了giraph和hadoop。应该导入哪个jar来获取上述包?

wwtsj6pe

wwtsj6pe1#

你运行的代码是正确版本的giraph吗?我认为您提到的导入是针对1.0.0之前的版本的,如果您包含用于更新版本的jar,它将找不到它们。

相关问题