Skip to content

Commit f158696

Browse files
authoredApr 6, 2017
Update SortedWordCountSolution.java
1 parent 1cc38dc commit f158696

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎src/main/java/com/sparkTutorial/pairRdd/sort/SortedWordCountSolution.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public class SortedWordCountSolution {
1616
public static void main(String[] args) throws Exception {
1717

1818
Logger.getLogger("org").setLevel(Level.ERROR);
19-
SparkConf conf = new SparkConf().setAppName("wordCounts").setMaster("local[3]");
19+
SparkConf conf = new SparkConf().setAppName("SortedWordCountSolution").setMaster("local[3]");
2020
JavaSparkContext sc = new JavaSparkContext(conf);
2121

2222
JavaRDD<String> lines = sc.textFile("in/word_count.text");

0 commit comments

Comments
 (0)
Please sign in to comment.