I am creating my own reducer as follows:
public class MyReducer implemts Reducer<K1,V1,K2,V2>{
@override
public void configure(JobConf conf){
}
@override
public void close(JobConf conf){
}
public void reduce(parsms ){
}
}
}
How can i output a custom csv header?I am not extending mapper and hence i cant overide setup method.