-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjob.status.inc
37 lines (27 loc) · 975 Bytes
/
job.status.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
function boa_job_status($jobId) {
global $user;
if (!isValidJob($jobId))
invalidJob($jobId);
drupal_set_title(t('Hadoop Status for Job ') . $jobId);
$query = db_select('boa_jobs', 'r');
$query->join('boa_output', 'o', 'r.id = o.id');
$query->fields('r', array('hadoop_status'));
$query->fields('r', array('hadoop_output'));
$query->condition('r.id', $jobId);
$record = $query->execute()->fetchObject();
if ($record->hadoop_status == 1) {
if (!preg_match('/Job ID: (job_\d+_\d+)/s', $record->hadoop_output, $matches)) {
drupal_set_message(t('Unable to view execution status.'), 'error');
drupal_goto("boa/job/$jobId");
drupal_exit();
}
set_time_limit(0);
exec("/home/hadoop/hadoop-current/bin/hadoop job -status ${matches[1]}", $out);
return '<pre>' . implode("\n", array_splice($out, 4)) . '</pre>';
}
drupal_set_message(t('The job is not currently running.'), 'warning');
drupal_goto("boa/job/$jobId");
drupal_exit();
}
?>