本文整理匯總了Java中org.apache.hadoop.mapred.RunningJob.mapProgress方法的典型用法代碼示例。如果您正苦於以下問題:Java RunningJob.mapProgress方法的具體用法?Java RunningJob.mapProgress怎麽用?Java RunningJob.mapProgress使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.apache.hadoop.mapred.RunningJob
的用法示例。
在下文中一共展示了RunningJob.mapProgress方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: testFailoverWhileRunningJob
import org.apache.hadoop.mapred.RunningJob; //導入方法依賴的package包/類
@Test(timeout=60000)
public void testFailoverWhileRunningJob() throws Exception {
LOG.info("Running job failover test");
// Inspired by TestRecoveryManager#testJobResubmission
FileUtil.fullyDelete(new File("/tmp/tst"));
// start a job on jt1
JobConf job1 = new JobConf(conf);
String signalFile = new Path(TEST_DIR, "signal").toString();
UtilsForTests.configureWaitingJobConf(job1, new Path(TEST_DIR, "input"),
new Path(TEST_DIR, "output3"), 2, 0, "test-resubmission", signalFile,
signalFile);
JobClient jc = new JobClient(job1);
RunningJob rJob1 = jc.submitJob(job1);
while (rJob1.mapProgress() < 0.5f) {
LOG.info("Waiting for job " + rJob1.getID() + " to be 50% done: " +
rJob1.mapProgress());
UtilsForTests.waitFor(500);
}
LOG.info("Waiting for job " + rJob1.getID() + " to be 50% done: " +
rJob1.mapProgress());
// Shut the first JT down, causing automatic failover
LOG.info("Shutting down jt1");
cluster.shutdownJobTracker(0);
// allow job to complete
FileSystem fs = FileSystem.getLocal(conf);
fs.create(new Path(TEST_DIR, "signal"));
while (!rJob1.isComplete()) {
LOG.info("Waiting for job " + rJob1.getID() + " to be successful: " +
rJob1.mapProgress());
UtilsForTests.waitFor(500);
}
assertTrue("Job should be successful", rJob1.isSuccessful());
}
示例2: progress
import org.apache.hadoop.mapred.RunningJob; //導入方法依賴的package包/類
private double progress(RunningJob runningJob) {
try {
if(runningJob == null) {
// Return default value
return -1;
}
return (runningJob.mapProgress() + runningJob.reduceProgress()) / 2;
} catch (IOException e) {
throw new SqoopException(MapreduceSubmissionError.MAPREDUCE_0003, e);
}
}