μ΄λ²μ μλ νμ template μ
λλ€. Mapper public class first_mapper extends MapReduceBase implements Mapper<LongWritable, Text, Text, Text> { private String SEPARATOR = "\t"; private String LogDate = ""; public void configure(JobConf job) { super.configure(job); String full_path = job.get("map.input.file"); int StartPosi = full_path.indexOf("summarized/")+"summarized/".length(); LogDate = full_path.substring(StartPosi, StartPosi+6); } public void map(LongWritable k, Text v, OutputCollector<Text, Text> o, Reporter r) throws IOException { o.collect(new Text("ERR"), new Text(v.toString.......