You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by ge...@apache.org on 2015/05/28 00:26:23 UTC

hadoop git commit: MAPREDUCE-6336. Enable v2 FileOutputCommitter by default. (Siqi Li via gera)

Repository: hadoop
Updated Branches:
  refs/heads/trunk 4102e5882 -> 788406e90


MAPREDUCE-6336. Enable v2 FileOutputCommitter by default. (Siqi Li via gera)


Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/788406e9
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/788406e9
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/788406e9

Branch: refs/heads/trunk
Commit: 788406e90cdfd1c7b55bae63602f744b484c040b
Parents: 4102e58
Author: Gera Shegalov <ge...@apache.org>
Authored: Wed May 27 13:11:10 2015 -0700
Committer: Gera Shegalov <ge...@apache.org>
Committed: Wed May 27 15:14:46 2015 -0700

----------------------------------------------------------------------
 hadoop-mapreduce-project/CHANGES.txt                              | 3 +++
 .../src/main/resources/mapred-default.xml                         | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hadoop/blob/788406e9/hadoop-mapreduce-project/CHANGES.txt
----------------------------------------------------------------------
diff --git a/hadoop-mapreduce-project/CHANGES.txt b/hadoop-mapreduce-project/CHANGES.txt
index c151dbb..53d3f18 100644
--- a/hadoop-mapreduce-project/CHANGES.txt
+++ b/hadoop-mapreduce-project/CHANGES.txt
@@ -13,6 +13,9 @@ Trunk (Unreleased)
     MAPREDUCE-4424. 'mapred job -list' command should show the job name
     as well. (Avinash Kujur via aajisaka)
 
+    MAPREDUCE-6336. Enable v2 FileOutputCommitter by default.
+    (Siqi Li via gera)
+
   NEW FEATURES
 
     MAPREDUCE-778. Rumen Anonymizer. (Amar Kamat and Chris Douglas via amarrk)

http://git-wip-us.apache.org/repos/asf/hadoop/blob/788406e9/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/resources/mapred-default.xml
----------------------------------------------------------------------
diff --git a/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/resources/mapred-default.xml b/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/resources/mapred-default.xml
index cd7c9b2..4a2dd77 100644
--- a/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/resources/mapred-default.xml
+++ b/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/resources/mapred-default.xml
@@ -1323,7 +1323,7 @@
 
 <property>
   <name>mapreduce.fileoutputcommitter.algorithm.version</name>
-  <value>1</value>
+  <value>2</value>
   <description>The file output committer algorithm version
   valid algorithm version number: 1 or 2
   default to 1, which is the original algorithm