Re: custom inputformat serializable problem

2015-02-26 Thread Sean Owen
If WRFVariableText is a Text, then it implements Writable, not Java serialization. You can implement Serializable in your class, or consider reusing SerializableWritable in Spark (note it's a developer API). On Thu, Feb 26, 2015 at 4:03 PM, patcharee wrote: > Hi, > > I am using custom inputformat

custom inputformat serializable problem

2015-02-26 Thread patcharee
Hi, I am using custom inputformat and recordreader. This custom recordreader has declaration: public class NetCDFRecordReader extends RecordReaderWRFVariableText> The WRFVariableText extends Text: public class WRFVariableText extends org.apache.hadoop.io.Text The WRFVariableText overrides rea