You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pig.apache.org by bi...@apache.org on 2012/04/27 00:49:21 UTC

svn commit: r1331140 - in /pig/trunk: CHANGES.txt src/org/apache/pig/impl/io/InterStorage.java

Author: billgraham
Date: Thu Apr 26 22:49:20 2012
New Revision: 1331140

URL: http://svn.apache.org/viewvc?rev=1331140&view=rev
Log:
PIG-2616 - JobControlCompiler.getInputSizeFromLoader must handle exceptions from LoadFunc.getStatistics (billgraham)

Modified:
    pig/trunk/CHANGES.txt
    pig/trunk/src/org/apache/pig/impl/io/InterStorage.java

Modified: pig/trunk/CHANGES.txt
URL: http://svn.apache.org/viewvc/pig/trunk/CHANGES.txt?rev=1331140&r1=1331139&r2=1331140&view=diff
==============================================================================
--- pig/trunk/CHANGES.txt (original)
+++ pig/trunk/CHANGES.txt Thu Apr 26 22:49:20 2012
@@ -112,6 +112,8 @@ OPTIMIZATIONS
 
 BUG FIXES
 
+PIG-2616: JobControlCompiler.getInputSizeFromLoader must handle exceptions from LoadFunc.getStatistics (billgraham)
+
 PIG-2644: Piggybank's HadoopJobHistoryLoader throws NPE when reading broken history file (herberts via daijy)
 
 PIG-2627: Custom partitioner not set when POSplit is involved in Plan (aniket486 via daijy)
@@ -171,6 +173,8 @@ INCOMPATIBLE CHANGES
 
 IMPROVEMENTS
 
+PIG-2574: Make reducer estimator plugable (billgraham)
+
 PIG-2601: Additional document for 0.10 (daijy)
 
 PIG-2317: Ruby/Jruby UDFs (jcoveney via daijy)

Modified: pig/trunk/src/org/apache/pig/impl/io/InterStorage.java
URL: http://svn.apache.org/viewvc/pig/trunk/src/org/apache/pig/impl/io/InterStorage.java?rev=1331140&r1=1331139&r2=1331140&view=diff
==============================================================================
--- pig/trunk/src/org/apache/pig/impl/io/InterStorage.java (original)
+++ pig/trunk/src/org/apache/pig/impl/io/InterStorage.java Thu Apr 26 22:49:20 2012
@@ -186,7 +186,7 @@ implements StoreFuncInterface, LoadMetad
     @Override
     public ResourceStatistics getStatistics(String location, Job job)
             throws IOException {
-        throw new UnsupportedOperationException();
+        return null;
     }
 
     @Override