File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
examples/src/main/scala/org/apache/spark/examples/graphx Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -25,14 +25,14 @@ object LiveJournalPageRank {
2525 def main (args : Array [String ]) {
2626 if (args.length < 1 ) {
2727 System .err.println(
28- " Usage: LiveJournalPageRank <edge_list_file> --numEPart=<num_edge_partitions>\n " +
28+ " Usage: LiveJournalPageRank <edge_list_file> --numEPart=<num_edge_partitions> [other options]\n " +
29+ " --numEPart=<num_edge_partitions>\n " +
30+ " The number of partitions for the graph's edge RDD.\n " +
2931 " [--tol=<tolerance>]\n " +
3032 " The tolerance allowed at convergence (smaller => more accurate). Default is " +
3133 " 0.001.\n " +
3234 " [--output=<output_file>]\n " +
3335 " If specified, the file to write the ranks to.\n " +
34- " [--numEPart=<num_edge_partitions>]\n " +
35- " The number of partitions for the graph's edge RDD.\n " +
3636 " [--partStrategy=RandomVertexCut | EdgePartition1D | EdgePartition2D | " +
3737 " CanonicalRandomVertexCut]\n " +
3838 " The way edges are assigned to edge partitions. Default is RandomVertexCut." )
You can’t perform that action at this time.
0 commit comments