MAPREDUCE-3073. Fixed build issues in MR1. Contributed by Mahadev Konar.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1174294 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4806d7ba74
commit
1eb7008753
|
@ -1401,6 +1401,8 @@ Release 0.23.0 - Unreleased
|
||||||
MAPREDUCE-2754. Fixed MR AM stdout, stderr and syslog to redirect to
|
MAPREDUCE-2754. Fixed MR AM stdout, stderr and syslog to redirect to
|
||||||
correct log-files. (Ravi Teja Ch N V via vinodkv)
|
correct log-files. (Ravi Teja Ch N V via vinodkv)
|
||||||
|
|
||||||
|
MAPREDUCE-3073. Fixed build issues in MR1. (mahadev via acmurthy)
|
||||||
|
|
||||||
Release 0.22.0 - Unreleased
|
Release 0.22.0 - Unreleased
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -26,7 +26,7 @@ import org.apache.hadoop.classification.InterfaceStability.Unstable;
|
||||||
*******************************/
|
*******************************/
|
||||||
@Private
|
@Private
|
||||||
@Unstable
|
@Unstable
|
||||||
public class MRConstants {
|
public interface MRConstants {
|
||||||
//
|
//
|
||||||
// Timeouts, constants
|
// Timeouts, constants
|
||||||
//
|
//
|
||||||
|
@ -57,4 +57,7 @@ public class MRConstants {
|
||||||
* The reduce task number for which this map output is being transferred
|
* The reduce task number for which this map output is being transferred
|
||||||
*/
|
*/
|
||||||
public static final String FOR_REDUCE_TASK = "for-reduce-task";
|
public static final String FOR_REDUCE_TASK = "for-reduce-task";
|
||||||
|
|
||||||
|
/** Used in MRv1, mostly in TaskTracker code **/
|
||||||
|
public static final String WORKDIR = "work";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue