Karthik Kambatla created MAPREDUCE-5099:
-------------------------------------------
Summary: mapreduce.lib.jobcontrol.JobControl API Incompatibility
between branch-1 and branch-2
Key: MAPREDUCE-5099
URL: https://issues.apache.org/jira/browse/MAPREDUCE-5099
Project: Hadoop Map/Reduce
Issue Type: Bug
Components: mrv2
Affects Versions: 2.0.3-alpha
Reporter: Karthik Kambatla
Assignee: Karthik Kambatla
The branch-1 API has the following methods:
{code}
public java.util.ArrayList getWaitingJobList();
public java.util.ArrayList getRunningJobList();
public java.util.ArrayList getReadyJobsList();
public java.util.ArrayList getSuccessfulJobList();
public java.util.ArrayList getFailedJobList();
{code}
and the branch-2 API has the following methods:
{code}
public java.util.List getWaitingJobList();
public java.util.List getRunningJobList();
public java.util.List getReadyJobsList();
public java.util.List getSuccessfulJobList();
public java.util.List getFailedJobList();
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira