-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNasdaq2.java
More file actions
86 lines (51 loc) · 2.18 KB
/
Copy pathNasdaq2.java
File metadata and controls
86 lines (51 loc) · 2.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package com.Rajesh.mapreduce;
import java.io.IOException;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.*;
import org.apache.hadoop.mapreduce.*;
import org.apache.hadoop.conf.*;
import org.apache.hadoop.mapreduce.lib.input.FileInputFormat;
import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;
public class Nasdaq2 {
public static class MyMapper extends Mapper<LongWritable, Text, Text, DoubleWritable> {
public void map(LongWritable key, Text value, Context context) throws IOException, InterruptedException{
String stockColHeader = "stock_symbol" ;
String line = value.toString();
String[] column = line.split(",");
String stockSymbol = column[1] ;
String stockHigh = column[4] ;
String stockVolume = column[7] ;
if(stockSymbol.compareTo(stockColHeader) != 0 && Long.parseLong(stockVolume) > 300000) {
String stockYearMonth = column[2].substring(0, 7);
context.write(new Text(stockSymbol + "-" + stockYearMonth), new DoubleWritable(Double.parseDouble(stockHigh)));
}
}
}
public static class MyReducer extends Reducer<Text, DoubleWritable, Text, DoubleWritable> {
public void reduce(Text key, Iterable<DoubleWritable> values, Context context) throws IOException, InterruptedException{
double high = 0;
double currhigh = 0;
for(DoubleWritable val : values) {
currhigh = val.get();
if (currhigh > high) {
high = currhigh ;
}
}
context.write(key, new DoubleWritable(high));
}
}
public static void main(String[] args) throws Exception {
Configuration conf = new Configuration();
Job job = new Job(conf, "Nasdaq2");
job.setJarByClass(Nasdaq2.class);
job.setMapperClass(MyMapper.class);
job.setReducerClass(MyReducer.class);
job.setMapOutputKeyClass(Text.class);
job.setMapOutputValueClass(DoubleWritable.class);
job.setOutputKeyClass(Text.class);
job.setOutputValueClass(DoubleWritable.class);
FileInputFormat.addInputPath(job, new Path(args[0]));
FileOutputFormat.setOutputPath(job, new Path(args[1]));
job.waitForCompletion(true);
}
}