Author: rkanter
Date: Mon Feb 4 18:01:42 2013
New Revision: 1442225
URL: http://svn.apache.org/viewvc?rev=1442225&view=rev
Log:
OOZIE-1018 Display coord job start time, end time, pause time, concurrency in
job -info (mona via tucu)
Modified:
oozie/branches/branch-3.3/client/src/main/java/org/apache/oozie/cli/OozieCLI.java
oozie/branches/branch-3.3/release-log.txt
oozie/branches/branch-3.3/webapp/src/main/webapp/oozie-console.js
Modified:
oozie/branches/branch-3.3/client/src/main/java/org/apache/oozie/cli/OozieCLI.java
URL:
http://svn.apache.org/viewvc/oozie/branches/branch-3.3/client/src/main/java/org/apache/oozie/cli/OozieCLI.java?rev=1442225&r1=1442224&r2=1442225&view=diff
==============================================================================
---
oozie/branches/branch-3.3/client/src/main/java/org/apache/oozie/cli/OozieCLI.java
(original)
+++
oozie/branches/branch-3.3/client/src/main/java/org/apache/oozie/cli/OozieCLI.java
Mon Feb 4 18:01:42 2013
@@ -954,9 +954,13 @@ public class OozieCLI {
System.out.println(RULER);
List<CoordinatorAction> actions = coordJob.getActions();
- System.out.println("Job Name : " + maskIfNull(coordJob.getAppName()));
- System.out.println("App Path : " + maskIfNull(coordJob.getAppPath()));
- System.out.println("Status : " + coordJob.getStatus());
+ System.out.println("Job Name : " +
maskIfNull(coordJob.getAppName()));
+ System.out.println("App Path : " +
maskIfNull(coordJob.getAppPath()));
+ System.out.println("Status : " + coordJob.getStatus());
+ System.out.println("Start Time : " +
maskDate(coordJob.getStartTime(), timeZoneId, false));
+ System.out.println("End Time : " + maskDate(coordJob.getEndTime(),
timeZoneId, false));
+ System.out.println("Pause Time : " +
maskDate(coordJob.getPauseTime(), timeZoneId, false));
+ System.out.println("Concurrency : " + coordJob.getConcurrency());
System.out.println(RULER);
if (verbose) {
Modified: oozie/branches/branch-3.3/release-log.txt
URL:
http://svn.apache.org/viewvc/oozie/branches/branch-3.3/release-log.txt?rev=1442225&r1=1442224&r2=1442225&view=diff
==============================================================================
--- oozie/branches/branch-3.3/release-log.txt (original)
+++ oozie/branches/branch-3.3/release-log.txt Mon Feb 4 18:01:42 2013
@@ -1,5 +1,6 @@
-- Oozie 3.3.2 (unreleased)
+OOZIE-1018 Display coord job start time, end time, pause time, concurrency in
job -info (mona via tucu)
OOZIE-1016 Tests that use junit assert or fail in a new thread report success
when they are actually failing (rkanter via tucu)
OOZIE-1017 Add test to make sure old version of Xerces isn't being used
(rkanter via tucu)
OOZIE-949 Allow the user to set 'mapred.job.name' (jrkinley via tucu)
Modified: oozie/branches/branch-3.3/webapp/src/main/webapp/oozie-console.js
URL:
http://svn.apache.org/viewvc/oozie/branches/branch-3.3/webapp/src/main/webapp/oozie-console.js?rev=1442225&r1=1442224&r2=1442225&view=diff
==============================================================================
--- oozie/branches/branch-3.3/webapp/src/main/webapp/oozie-console.js (original)
+++ oozie/branches/branch-3.3/webapp/src/main/webapp/oozie-console.js Mon Feb
4 18:01:42 2013
@@ -754,15 +754,33 @@ function coordJobDetailsPopup(response,
fieldLabel: 'Start Time',
editable: false,
name: 'startTime',
- width: 170,
+ width: 200,
value: jobDetails["startTime"]
}, {
fieldLabel: 'Next Matd',
editable: false,
name: 'nextMaterializedTime',
- width: 170,
+ width: 200,
value: jobDetails["nextMaterializedTime"]
- }]
+ }, {
+ fieldLabel: 'End Time',
+ editable: false,
+ name: 'endTime',
+ width: 200,
+ value: jobDetails["endTime"]
+ }, {
+ fieldLabel: 'Pause Time',
+ editable: false,
+ name: 'pauseTime',
+ width: 200,
+ value: jobDetails["pauseTime"]
+ }, {
+ fieldLabel: 'Concurrency',
+ editable: false,
+ name: 'concurrency',
+ width: 200,
+ value: jobDetails["concurrency"]
+ }, ]
});
var fs = new Ext.FormPanel({
frame: true,