MAPREDUCE-5229. Put back FileOutputCommitter.TEMP_DIR_NAME in mapreduce for binary compatibility with 1.x APIs. Contributed by Zhijie Shen.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1488621 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3dce234ed9
commit
8267117e10
|
@ -270,6 +270,9 @@ Release 2.1.0-beta - UNRELEASED
|
|||
MAPREDUCE-5289. Updated MR App to use Token directly after YARN-717. (Jian He
|
||||
via vinodkv)
|
||||
|
||||
MAPREDUCE-5229. Put back FileOutputCommitter.TEMP_DIR_NAME in mapreduce for
|
||||
binary compatibility with 1.x APIs. (Zhijie Shen via vinodkv)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
MAPREDUCE-4974. Optimising the LineRecordReader initialize() method
|
||||
|
|
|
@ -49,6 +49,13 @@ public class FileOutputCommitter extends OutputCommitter {
|
|||
* committed yet.
|
||||
*/
|
||||
public static final String PENDING_DIR_NAME = "_temporary";
|
||||
/**
|
||||
* Temporary directory name
|
||||
*
|
||||
* The static variable to be compatible with M/R 1.x
|
||||
*/
|
||||
@Deprecated
|
||||
protected static final String TEMP_DIR_NAME = PENDING_DIR_NAME;
|
||||
public static final String SUCCEEDED_FILE_NAME = "_SUCCESS";
|
||||
public static final String SUCCESSFUL_JOB_OUTPUT_DIR_MARKER =
|
||||
"mapreduce.fileoutputcommitter.marksuccessfuljobs";
|
||||
|
|
Loading…
Reference in New Issue