Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an application that only implement Map function. I'm creating 1000 jobs, each with a unique PrefixFilter. Example:

public void startNewScan(String prefix, long endTime)
    Job job = new Job(conf, "MyJob");
    job.setNumReduceTasks(0);

    Scan scan = new Scan();

    scan.setTimeRange(0, endTime);
    scan.addColumn(Bytes.toBytes("col"), Bytes.toBytes("Value"));
    scan.setFilter(new PrefixFilter(prefix.getBytes()));

    TableMapReduceUtil.initTableMapperJob(tableName, scan, ExtractMapper.class, ImmutableBytesWritable.class, Result.class, job);
    job.waitForCompletion(true);
}

Now - I don't want to wait for completion, because executing 1000 jobs would take me forever. Creating a thread for each job is also not an option. Is there anything built in for this usage? Something like JobsPool that accepts all the jobs and has its own waitForCompletion for all the jobs..

Thanks in advance, Udi

share|improve this question

1 Answer

Use:

job.submit();

"Submit the job to the cluster and return immediately."
share|improve this answer
Yeah, I saw this function, but the thing is that once its done I don't have a way to know weather what I did was successful or not, and I lose any indication for exception thrown in the process.. – Udi Jun 28 '11 at 11:28
1  
@Udi There seems to be methods such as isComplete(), isRetired(), etc., in the API – CMR Jun 28 '11 at 11:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.