|
|
+
Peter Cogan 2013-01-04, 15:50
+
bejoy.hadoop@... 2013-01-04, 16:04
-
Re: Writing a sequence filePeter Cogan 2013-01-04, 16:15
Hi Bejoy,
ah yes that is exactly the mistake I was making, I had import org.apache.hadoop.mapred.SequenceFileOutputFormat; instead of import org.apache.hadoop.mapreduce.lib.output.SequenceFileOutputFormat; On Fri, Jan 4, 2013 at 4:04 PM, <[EMAIL PROTECTED]> wrote: > ** > Hi Peter > > Did you ensure that using SequenceFileOutputFormat from the right package? > > Based on the API you are using, mapred or mapreduce you need to use the > OutputFormat from the corresponding package. > Regards > Bejoy KS > > Sent from remote device, Please excuse typos > ------------------------------ > *From: * Peter Cogan <[EMAIL PROTECTED]> > *Date: *Fri, 4 Jan 2013 15:50:04 +0000 > *To: *<[EMAIL PROTECTED]> > *ReplyTo: * [EMAIL PROTECTED] > *Subject: *Writing a sequence file > > Hi, > > I am trying to get my reducer to produce a sequence file using the command > > job.setOutputFormatClass(SequenceFileOutputFormat.class); > > > However, I am getting an error in eclipse as follows: > > > The method setOutputFormatClass(Class<? extends OutputFormat>) in the type > Job is not applicable for the arguments (Class<SequenceFileOutputFormat>) > > > I'm really confused! > > > Any help much appreciated! > > > thanks > > Peter > > |