Andrew McNabb wrote:
SequenceFileInputFormat inputformat = new SequenceFileInputFormat();
RecordReader in = inputformat.getRecordReader(fshandle, split[i], logjob, 
nullreporter);

To read sequence files directly outside of MapReduce, just use SequenceFile directly, e.g., something like:

MyKey key = new MyKey();
MyValue value = new MyValue();

SequenceFile.Reader reader =
  new SequenceFile.reader(NutchFileSystem.get("local"), "file");

while (reader.next(key, value)) {
  ... process key/value pair ...
}

Wouldn't that be simpler?

Doug


-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
Nutch-developers mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/nutch-developers

Reply via email to