You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ma...@apache.org on 2014/01/06 03:03:01 UTC

svn commit: r1555647 - in /lucene/dev/trunk/solr/contrib/map-reduce/src/test/org/apache/solr/hadoop: MorphlineBasicMiniMRTest.java MorphlineGoLiveMiniMRTest.java

Author: markrmiller
Date: Mon Jan  6 02:03:00 2014
New Revision: 1555647

URL: http://svn.apache.org/r1555647
Log:
SOLR-1301: make debugging these tests a whole lot easier by sending map reduce job logging to std out

Modified:
    lucene/dev/trunk/solr/contrib/map-reduce/src/test/org/apache/solr/hadoop/MorphlineBasicMiniMRTest.java
    lucene/dev/trunk/solr/contrib/map-reduce/src/test/org/apache/solr/hadoop/MorphlineGoLiveMiniMRTest.java

Modified: lucene/dev/trunk/solr/contrib/map-reduce/src/test/org/apache/solr/hadoop/MorphlineBasicMiniMRTest.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/contrib/map-reduce/src/test/org/apache/solr/hadoop/MorphlineBasicMiniMRTest.java?rev=1555647&r1=1555646&r2=1555647&view=diff
==============================================================================
--- lucene/dev/trunk/solr/contrib/map-reduce/src/test/org/apache/solr/hadoop/MorphlineBasicMiniMRTest.java (original)
+++ lucene/dev/trunk/solr/contrib/map-reduce/src/test/org/apache/solr/hadoop/MorphlineBasicMiniMRTest.java Mon Jan  6 02:03:00 2014
@@ -316,6 +316,7 @@ public class MorphlineBasicMiniMRTest ex
     fs.copyFromLocalFile(new Path(DOCUMENTS_DIR, inputAvroFile), dataDir);
     
     JobConf jobConf = getJobConf();
+    jobConf.set("jobclient.output.filter", "ALL");
     if (ENABLE_LOCAL_JOB_RUNNER) { // enable Hadoop LocalJobRunner; this enables to run in debugger and set breakpoints
       jobConf.set("mapred.job.tracker", "local");
     }

Modified: lucene/dev/trunk/solr/contrib/map-reduce/src/test/org/apache/solr/hadoop/MorphlineGoLiveMiniMRTest.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/contrib/map-reduce/src/test/org/apache/solr/hadoop/MorphlineGoLiveMiniMRTest.java?rev=1555647&r1=1555646&r2=1555647&view=diff
==============================================================================
--- lucene/dev/trunk/solr/contrib/map-reduce/src/test/org/apache/solr/hadoop/MorphlineGoLiveMiniMRTest.java (original)
+++ lucene/dev/trunk/solr/contrib/map-reduce/src/test/org/apache/solr/hadoop/MorphlineGoLiveMiniMRTest.java Mon Jan  6 02:03:00 2014
@@ -362,6 +362,7 @@ public class MorphlineGoLiveMiniMRTest e
     Path INPATH = upAvroFile(fs, inDir, DATADIR, dataDir, inputAvroFile1);
     
     JobConf jobConf = getJobConf();
+    jobConf.set("jobclient.output.filter", "ALL");
     // enable mapred.job.tracker = local to run in debugger and set breakpoints
     // jobConf.set("mapred.job.tracker", "local");
     jobConf.setMaxMapAttempts(1);