Reading a excel file in hadoop map reduce
问题 I am trying to read a Excel file containing some data for aggregation in hadoop.The map reduce program seems to be working fine but the output produce is in a non readable format.Do I need to use any special InputFormat reader for Excel file in Hadoop Map Reduce ?.My configuration is as below Configuration conf=getConf(); Job job=new Job(conf,"LatestWordCount"); job.setJarByClass(FlightDetailsCount.class); Path input=new Path(args[0]); Path output=new Path(args[1]); FileInputFormat