Author: omalley
Date: Thu Oct 30 17:04:20 2008
New Revision: 709301
URL: http://svn.apache.org/viewvc?rev=709301&view=rev
Log:
HADOOP-4510. Make getTaskOutputPath public. (Chris Wensel via omalley)
Merged -r 707935:707936 from trunk.
Modified:
hadoop/core/branches/branch-0.19/CHANGES.txt
hadoop/core/branches/branch-0.19/src/mapred/org/apache/hadoop/mapred/FileOutputFormat.java
Modified: hadoop/core/branches/branch-0.19/CHANGES.txt
URL:
http://svn.apache.org/viewvc/hadoop/core/branches/branch-0.19/CHANGES.txt?rev=709301&r1=709300&r2=709301&view=diff
==============================================================================
--- hadoop/core/branches/branch-0.19/CHANGES.txt (original)
+++ hadoop/core/branches/branch-0.19/CHANGES.txt Thu Oct 30 17:04:20 2008
@@ -463,6 +463,8 @@
HADOOP-4105. Add forrest documentation for libhdfs.
(Pete Wyckoff via cutting)
+ HADOOP-4510. Make getTaskOutputPath public. (Chris Wensel via omalley)
+
OPTIMIZATIONS
HADOOP-3556. Removed lock contention in MD5Hash by changing the
Modified:
hadoop/core/branches/branch-0.19/src/mapred/org/apache/hadoop/mapred/FileOutputFormat.java
URL:
http://svn.apache.org/viewvc/hadoop/core/branches/branch-0.19/src/mapred/org/apache/hadoop/mapred/FileOutputFormat.java?rev=709301&r1=709300&r2=709301&view=diff
==============================================================================
---
hadoop/core/branches/branch-0.19/src/mapred/org/apache/hadoop/mapred/FileOutputFormat.java
(original)
+++
hadoop/core/branches/branch-0.19/src/mapred/org/apache/hadoop/mapred/FileOutputFormat.java
Thu Oct 30 17:04:20 2008
@@ -211,7 +211,7 @@
* @return path to the task's temporary output file
* @throws IOException
*/
- protected static Path getTaskOutputPath(JobConf conf, String name)
+ public static Path getTaskOutputPath(JobConf conf, String name)
throws IOException {
// ${mapred.out.dir}
Path outputPath = getOutputPath(conf);