我试图从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来获取上述包?
1条答案
按热度按时间wwtsj6pe1#
你运行的代码是正确版本的giraph吗?我认为您提到的导入是针对1.0.0之前的版本的,如果您包含用于更新版本的jar,它将找不到它们。