Hello, I am using the following job configurations in my MapReduce job.
job.setInputFormatClass(AvroKeyInputFormat.class); job.setMapOutputKeyClass(ImmutableBytesWritable.class); job.setMapOutputValueClass(Put.class); HFileOutputFormat.configureIncrementalLoad(job, table); How can I configure this in MR action? Thanks, Vishal Kapoor
