You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nutch.apache.org by ma...@apache.org on 2014/03/07 15:53:44 UTC

svn commit: r1575282 - in /nutch/trunk/src: bin/nutch java/org/apache/nutch/util/hostdb/

Author: markus
Date: Fri Mar  7 14:53:44 2014
New Revision: 1575282

URL: http://svn.apache.org/r1575282
Log:
removed HostDB from Nutch 1.8 trunk

Removed:
    nutch/trunk/src/java/org/apache/nutch/util/hostdb/
Modified:
    nutch/trunk/src/bin/nutch

Modified: nutch/trunk/src/bin/nutch
URL: http://svn.apache.org/viewvc/nutch/trunk/src/bin/nutch?rev=1575282&r1=1575281&r2=1575282&view=diff
==============================================================================
--- nutch/trunk/src/bin/nutch (original)
+++ nutch/trunk/src/bin/nutch Fri Mar  7 14:53:44 2014
@@ -66,8 +66,6 @@ if [ $# = 0 ]; then
   echo "  solrdedup         remove duplicates from solr - DEPRECATED use the dedup command instead"
   echo "  solrclean         remove HTTP 301 and 404 documents from solr - DEPRECATED use the clean command instead"
   echo "  clean             remove HTTP 301 and 404 documents and duplicates from indexing backends configured via plugins"
-  echo "  hostdb            create a HostDB (or update an earlier one) from the CrawlDB"
-  echo "  readhostdb        dumps HostDB data"
   echo "  parsechecker      check the parser for a given url"
   echo "  indexchecker      check the indexing filters for a given url"
   echo "  domainstats       calculate domain statistics from crawldb"
@@ -238,10 +236,6 @@ elif [ "$COMMAND" = "solrclean" ] ; then
   shift; shift
 elif [ "$COMMAND" = "clean" ] ; then
   CLASS=org.apache.nutch.indexer.CleaningJob
-elif [ "$COMMAND" = "hostdb" ] ; then
-  CLASS=org.apache.nutch.util.hostdb.HostDb
-elif [ "$COMMAND" = "readhostdb" ] ; then
-  CLASS=org.apache.nutch.util.hostdb.DumpHostDb 
 elif [ "$COMMAND" = "parsechecker" ] ; then
   CLASS=org.apache.nutch.parse.ParserChecker
 elif [ "$COMMAND" = "indexchecker" ] ; then