You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@nutch.apache.org by "faruk berksöz (JIRA)" <ji...@apache.org> on 2010/09/08 16:48:32 UTC

[jira] Updated: (NUTCH-903) RESUME_KEY field in FetcherJob.Java has not been get correctly

     [ https://issues.apache.org/jira/browse/NUTCH-903?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

faruk berksöz updated NUTCH-903:
--------------------------------

    Description: 
Source modification request for nutch 2.0 .

FetcherJob.Java
	...
	FetcherMapper
	....
		protected void setup(Context context) {

			  Configuration conf = context.getConfiguration();

			  shouldContinue = conf.getBoolean("job.continue", false);

		>>>	  

		>>>  job.continue has not beeen set anywhere

		>>> "job.continue" should be RESUME_KEY which is set before for this purpose

		>>>			  

			  crawlId = new Utf8(conf.get(GeneratorJob.CRAWL_ID, Nutch.ALL_CRAWL_ID_STR));

			}
	...


  was:
Source modification request for nutch 2.0 .

FetcherJob.Java
	...
	FetcherMapper
	....
		protected void setup(Context context) {
			  Configuration conf = context.getConfiguration();
			  shouldContinue = conf.getBoolean("job.continue", false);
		>>>	  
		>>>  job.continue has not beeen set anywhere
		>>> "job.continue" should be RESUME_KEY which is set before for this purpose
		>>>			  
			  crawlId = new Utf8(conf.get(GeneratorJob.CRAWL_ID, Nutch.ALL_CRAWL_ID_STR));
			}
	...
	


> RESUME_KEY field in FetcherJob.Java has not been get correctly
> --------------------------------------------------------------
>
>                 Key: NUTCH-903
>                 URL: https://issues.apache.org/jira/browse/NUTCH-903
>             Project: Nutch
>          Issue Type: Bug
>          Components: fetcher
>    Affects Versions: 2.0
>         Environment: nutch 2.0
>            Reporter: faruk berksöz
>            Priority: Minor
>             Fix For: 2.0
>
>
> Source modification request for nutch 2.0 .
> FetcherJob.Java
> 	...
> 	FetcherMapper
> 	....
> 		protected void setup(Context context) {
> 			  Configuration conf = context.getConfiguration();
> 			  shouldContinue = conf.getBoolean("job.continue", false);
> 		>>>	  
> 		>>>  job.continue has not beeen set anywhere
> 		>>> "job.continue" should be RESUME_KEY which is set before for this purpose
> 		>>>			  
> 			  crawlId = new Utf8(conf.get(GeneratorJob.CRAWL_ID, Nutch.ALL_CRAWL_ID_STR));
> 			}
> 	...

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.