Open Foristkirito opened 7 years ago
The org.qcri.rheem.core.api.exception.RheemException: Could not find a single execution plan.
indicates that you did not specify enough platforms to provide all necessary execution operators for the plan. In fact, for the PageRank example, you need to use at least one of java-graph
, graphchi
, spark-graph
or basic-graph
in addition to spark
. For instance
mvn -e -X package exec:java -Dexec.mainClass=com.github.sekruse.pagerank.PageRank -Dexec.args="spark,spark-graph pagerank.txt 10"
will employ GraphX to implement the actual PageRankOperator
.
Great, it works! Thank you for your replying!
I will leave this issue open to provide some actual examples in the readme. Thanks for reporting!
Please give some more details to run the examples. I just used
mvn package
and the:mvn -e -X package exec:java -Dexec.mainClass=com.github.sekruse.pagerank.PageRank -Dexec.args="spark pagerank.txt 10"
to run the pagerank example. but i got the following errors: