Just wanted to share...I'm just using the Nutch parsing framework, not Nutch, so I don't need any Outlink collection during parsing. It's not possible to disable it, so I added the following to OutlinkExtractor.getOutlinks().
String doOutlinks = conf.get("parse.outlink");
if ("true".equalsIgnoreCase(doOutlinks))
{
...
}
Not sure it's of general use to Nutch, but for parsing only it's useful.
Antony
