當前位置: 首頁>>代碼示例>>Java>>正文


Java RunningJob.getJobState方法代碼示例

本文整理匯總了Java中org.apache.hadoop.mapred.RunningJob.getJobState方法的典型用法代碼示例。如果您正苦於以下問題:Java RunningJob.getJobState方法的具體用法?Java RunningJob.getJobState怎麽用?Java RunningJob.getJobState使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.apache.hadoop.mapred.RunningJob的用法示例。


在下文中一共展示了RunningJob.getJobState方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: verifyACLPersistence

import org.apache.hadoop.mapred.RunningJob; //導入方法依賴的package包/類
private void verifyACLPersistence() throws IOException,
    InterruptedException {

  // Set the job up.
  final JobConf myConf = mr.createJobConf();
  myConf.set(JobContext.JOB_ACL_VIEW_JOB, viewColleague + " group2");

  // Submit the job as user1
  RunningJob job = submitJobAsUser(myConf, jobSubmitter);

  final JobID jobId = job.getID();

  // Kill the job and wait till it is actually killed so that it is written to
  // CompletedJobStore
  job.killJob();
  while (job.getJobState() != JobStatus.KILLED) {
    LOG.info("Waiting for the job to be killed successfully..");
    Thread.sleep(200);
  }

  // Now kill the cluster, so that the job is 'forgotten'
  tearDown();

  // Re-start the cluster
  startCluster(true);

  final JobConf myNewJobConf = mr.createJobConf();
  // Now verify view-job works off CompletedJobStore
  verifyViewJobAsAuthorizedUser(myNewJobConf, jobId, viewColleague);
  verifyViewJobAsAuthorizedUser(myNewJobConf, jobId, qAdmin);

  // Only JobCounters is persisted on the JobStore. So test counters only.
  UserGroupInformation unauthorizedUGI =
      UserGroupInformation.createUserForTesting(
          modifyColleague, new String[] {});

  unauthorizedUGI.doAs(new PrivilegedExceptionAction<Object>() {
    @SuppressWarnings("null")
    @Override
    public Object run() {
      RunningJob myJob = null;
      try {
        JobClient client = new JobClient(myNewJobConf);
        myJob = client.getJob(jobId);
      } catch (Exception e) {
        fail("Exception .." + e);
      }

      assertNotNull("Job " + jobId + " is not known to the JobTracker!",
          myJob);

      // Tests authorization failure with getCounters
      try {
        myJob.getCounters();
        fail("'cannot perform operation VIEW_JOB_COUNTERS' expected..");
      } catch (IOException ioe) {
        assertTrue(ioe.getMessage(), ioe.getMessage().contains("cannot perform operation VIEW_JOB_COUNTERS"));
      }

      return null;
    }
  });

}
 
開發者ID:Nextzero,項目名稱:hadoop-2.6.0-cdh5.4.3,代碼行數:65,代碼來源:TestJobACLs.java


注:本文中的org.apache.hadoop.mapred.RunningJob.getJobState方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。