We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b76555 commit 1cc38dcCopy full SHA for 1cc38dc
src/main/java/com/sparkTutorial/pairRdd/aggregation/combinebykey/AverageHousePriceSolution.java
@@ -18,7 +18,7 @@ public class AverageHousePriceSolution {
18
public static void main(String[] args) throws Exception {
19
20
Logger.getLogger("org").setLevel(Level.ERROR);
21
- SparkConf conf = new SparkConf().setAppName("wordCounts").setMaster("local[3]");
+ SparkConf conf = new SparkConf().setAppName("averageHousePriceSolution").setMaster("local[3]");
22
JavaSparkContext sc = new JavaSparkContext(conf);
23
24
JavaRDD<String> lines = sc.textFile("in/RealEstate.csv");
0 commit comments