I am writing a LoadFunc called ArcFileReader to load Common Crawl data in
ArcFile format. There is already a ArcRecord, ArcRecordReader and
ArcInputFormat for Hadoop.

ArcInputFormat extends Hadoop's FileInputFormat, which implements Hadoop's
InputFormat interface. Why then can't I specify ArcInputFormat as my
InputFormat in my LoadFunc?

    @Override
    public InputFormat getInputFormat() throws IOException {
        return new ArcInputFormat();
    }


Java complains - attempting to use incompatible return type. What gives?

-- 
Russell Jurney twitter.com/rjurney [email protected] datasyndrome.com

Reply via email to