job.setOutputPath(output);
job.setOutputKeyClass(Text.class);
job.setOutputValueClass(CrawlDatum.class);
// job.setOutputFormat(SequenceFileOutputFormat.class);
// job.setOutputKeyComparatorClass(HashComparator.class);
RecordWriter writer = new SequenceFileOutputFormat().getRecordWriter(null,job,"fetcher",new NoProgress());
for (com.flaptor.hounder.crawler.pagedb.Page page : fetchlist) {
Text key = new Text(page.getUrl());
CrawlDatum value = new CrawlDatum(); // TODO: try taking this line outside of the loop
writer.write(key,value);
}