Class Fetcher
- All Implemented Interfaces:
Configurable,Tool
This fetcher uses a well-known model of one producer (a QueueFeeder) and many consumers (FetcherThread-s).
QueueFeeder reads input fetchlists and populates a set of FetchItemQueue-s, which hold FetchItem-s that describe the items to be fetched. There are as many queues as there are unique hosts, but at any given time the total number of fetch items in all queues is less than a fixed number (currently set to a multiple of the number of threads).
As items are consumed from the queues, the QueueFeeder continues to add new input items, so that their total count stays fixed (FetcherThread-s may also add new items to the queues e.g. as a results of redirection) - until all input items are exhausted, at which point the number of items in the queues begins to decrease. When this number reaches 0 fetcher will finish.
This fetcher implementation handles per-host blocking itself, instead of delegating this work to protocol-specific plugins. Each per-host queue handles its own "politeness" settings, such as the maximum number of concurrent requests and crawl delay between consecutive requests - and also a list of requests in progress, and the time the last request was finished. As FetcherThread-s ask for new items to be fetched, queues may return eligible items or null if for "politeness" reasons this host's queue is not yet ready.
If there are still unfetched items in the queues, but none of the items are ready, FetcherThread-s will spin-wait until either some items become available, or a timeout is reached (at which point the Fetcher will abort, assuming the task is hung).
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classReducer that passes through (url, datum) records and merges TDigests from map tasks to set job-level latency percentile counters.static classstatic class -
Field Summary
FieldsFields inherited from class org.apache.nutch.util.NutchTool
currentJob, currentJobNum, numJobs, results, status -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidstatic booleanisParsing(Configuration conf) static booleanstatic voidRun the fetcher.intRuns the tool, using a map of arguments.Methods inherited from class org.apache.nutch.util.NutchTool
getProgress, getStatus, killJob, setConf, stopJobMethods inherited from class org.apache.hadoop.conf.Configured
getConfMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.hadoop.conf.Configurable
getConf, setConf
-
Field Details
-
PERM_REFRESH_TIME
public static final int PERM_REFRESH_TIME- See Also:
-
CONTENT_REDIR
- See Also:
-
PROTOCOL_REDIR
- See Also:
-
-
Constructor Details
-
Fetcher
public Fetcher() -
Fetcher
-
-
Method Details
-
isParsing
-
isStoringContent
-
fetch
public void fetch(Path segment, int threads) throws IOException, InterruptedException, ClassNotFoundException -
main
Run the fetcher.- Parameters:
args- input parameters for the job- Throws:
Exception- if a fatal error arises whilst running the job
-
run
-
run
Description copied from class:NutchToolRuns the tool, using a map of arguments. May return results, or null.- Specified by:
runin classNutchTool- Parameters:
args- aMapof arguments to be run with the toolcrawlId- a crawl identifier to associate with the tool invocation- Returns:
- Map results object if tool executes successfully otherwise null
- Throws:
Exception- if there is an error during the tool execution
-