You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pig.apache.org by ol...@apache.org on 2008/09/25 03:06:04 UTC

svn commit: r698788 - in /incubator/pig/branches/types: CHANGES.txt src/org/apache/pig/backend/hadoop/executionengine/mapReduceLayer/MapReduceLauncher.java

Author: olga
Date: Wed Sep 24 18:06:03 2008
New Revision: 698788

URL: http://svn.apache.org/viewvc?rev=698788&view=rev
Log:
PIG-459: increased sleep time"

Modified:
    incubator/pig/branches/types/CHANGES.txt
    incubator/pig/branches/types/src/org/apache/pig/backend/hadoop/executionengine/mapReduceLayer/MapReduceLauncher.java

Modified: incubator/pig/branches/types/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/pig/branches/types/CHANGES.txt?rev=698788&r1=698787&r2=698788&view=diff
==============================================================================
--- incubator/pig/branches/types/CHANGES.txt (original)
+++ incubator/pig/branches/types/CHANGES.txt Wed Sep 24 18:06:03 2008
@@ -247,5 +247,6 @@
 
     PIG-455: "group" alias is lost after a flatten(group) (pradeepk vi olgan)
 
-    PIG-458: integration with Hadoop 19 (olgan)
+    PIG-458: integration with Hadoop 18 (olgan)
 
+    PIG-459: increased sleep time before checking for job progress

Modified: incubator/pig/branches/types/src/org/apache/pig/backend/hadoop/executionengine/mapReduceLayer/MapReduceLauncher.java
URL: http://svn.apache.org/viewvc/incubator/pig/branches/types/src/org/apache/pig/backend/hadoop/executionengine/mapReduceLayer/MapReduceLauncher.java?rev=698788&r1=698787&r2=698788&view=diff
==============================================================================
--- incubator/pig/branches/types/src/org/apache/pig/backend/hadoop/executionengine/mapReduceLayer/MapReduceLauncher.java (original)
+++ incubator/pig/branches/types/src/org/apache/pig/backend/hadoop/executionengine/mapReduceLayer/MapReduceLauncher.java Wed Sep 24 18:06:03 2008
@@ -56,7 +56,7 @@
                                                    IOException,
                                                    ExecException,
                                                    JobCreationException {
-        long sleepTime = 500;
+        long sleepTime = 5000;
         MROperPlan mrp = compile(php, pc);
         
         ExecutionEngine exe = pc.getExecutionEngine();