We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4d5254 commit 1b76555Copy full SHA for 1b76555
src/main/java/com/sparkTutorial/pairRdd/aggregation/reducebykey/housePrice/AverageHousePriceSolution.java
@@ -14,7 +14,7 @@ public class AverageHousePriceSolution {
14
15
public static void main(String[] args) throws Exception {
16
Logger.getLogger("org").setLevel(Level.ERROR);
17
- SparkConf conf = new SparkConf().setAppName("wordCounts").setMaster("local[3]");
+ SparkConf conf = new SparkConf().setAppName("averageHousePriceSolution").setMaster("local[3]");
18
JavaSparkContext sc = new JavaSparkContext(conf);
19
20
JavaRDD<String> lines = sc.textFile("in/RealEstate.csv");
0 commit comments