Description
The FetchItemQueues overloaded constructor attempts to obtain the NON-EXISTENT fetcher.timelimit configuration property.
this.timelimit = conf.getLong("fetcher.timelimit", -1);
As you can see a default value of -1 is provided. The first parameter is however wrong. It should instead reference the following configuration property.
<property> <name>fetcher.timelimit.mins</name> <value>-1</value> <description>This is the number of minutes allocated to the fetching. Once this value is reached, any remaining entry from the input URL list is skipped and all active queues are emptied. The default value of -1 deactivates the time limit. </description> </property>
Note, fetcher.timelimit.mins
I think that this essentially means the Fetcher has no time limit which is ofcourse not desired.