Dear Wiki user, You have subscribed to a wiki page or wiki category on "Nutch Wiki" for change notification.
The following page has been changed by NicolásLichtmaier: http://wiki.apache.org/nutch/Upgrading_from_0%2e8%2ex_to_0%2e9 The comment on the change is: Changed examples to use 2007*. ------------------------------------------------------------------------------ * if you ran your fetcher in parsing mode, or if you already parsed the segments, then for each segment you need to first remove directories containing parsed content: {{{ - for i in segments/2006* ; do + for i in segments/2007* ; do (cd $i && rm -rf crawl_parse parse_data parse_text) done }}} * then you can use 'mergesegs' command, which was modified to perform the conversion of remaining segment parts, e.g. like this: {{{ mkdir converted - for i in segments/2006* ; do + for i in segments/2007* ; do nutch mergesegs converted $i done }}}