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:
Arun Murthy 2011-09-22 18:05:30 +00:00
parent 4806d7ba74
commit 1eb7008753
2 changed files with 6 additions and 1 deletions

View File

@ -1401,6 +1401,8 @@ Release 0.23.0 - Unreleased
MAPREDUCE-2754. Fixed MR AM stdout, stderr and syslog to redirect to
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
INCOMPATIBLE CHANGES

View File

@ -26,7 +26,7 @@
*******************************/
@Private
@Unstable
public class MRConstants {
public interface MRConstants {
//
// Timeouts, constants
//
@ -57,4 +57,7 @@ public class MRConstants {
* The reduce task number for which this map output is being transferred
*/
public static final String FOR_REDUCE_TASK = "for-reduce-task";
/** Used in MRv1, mostly in TaskTracker code **/
public static final String WORKDIR = "work";
}