You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@giraph.apache.org by ac...@apache.org on 2013/04/13 06:55:01 UTC

git commit: updated refs/remotes/origin/release-1.0 to 7e48523

Updated Branches:
  refs/remotes/origin/release-1.0 a33d50b4a -> 7e48523b5


GIRAPH-627: YARN build profile is broken. (rvs via aching)


Project: http://git-wip-us.apache.org/repos/asf/giraph/repo
Commit: http://git-wip-us.apache.org/repos/asf/giraph/commit/7e48523b
Tree: http://git-wip-us.apache.org/repos/asf/giraph/tree/7e48523b
Diff: http://git-wip-us.apache.org/repos/asf/giraph/diff/7e48523b

Branch: refs/remotes/origin/release-1.0
Commit: 7e48523b520afee8e727d1e1aaab801a3bd80f06
Parents: a33d50b
Author: Avery Ching <ac...@fb.com>
Authored: Fri Apr 12 21:47:32 2013 -0700
Committer: Avery Ching <ac...@fb.com>
Committed: Fri Apr 12 21:48:29 2013 -0700

----------------------------------------------------------------------
 CHANGELOG                                          |    2 ++
 .../java/org/apache/giraph/yarn/TestYarnJob.java   |    4 ++--
 2 files changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/giraph/blob/7e48523b/CHANGELOG
----------------------------------------------------------------------
diff --git a/CHANGELOG b/CHANGELOG
index c45577e..38e6e83 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -4,6 +4,8 @@ Release 1.1 - unreleased
   
 Release 1.0 - 2013-04-12
 
+  GIRAPH-627: YARN build profile is broken. (rvs via aching)
+
   GIRAPH-628: Can't build Giraph without git due to mavanagaiata not
   configured right (aching).
 

http://git-wip-us.apache.org/repos/asf/giraph/blob/7e48523b/giraph-core/src/test/java/org/apache/giraph/yarn/TestYarnJob.java
----------------------------------------------------------------------
diff --git a/giraph-core/src/test/java/org/apache/giraph/yarn/TestYarnJob.java b/giraph-core/src/test/java/org/apache/giraph/yarn/TestYarnJob.java
index efd1179..f9d5544 100644
--- a/giraph-core/src/test/java/org/apache/giraph/yarn/TestYarnJob.java
+++ b/giraph-core/src/test/java/org/apache/giraph/yarn/TestYarnJob.java
@@ -33,7 +33,7 @@ import org.apache.giraph.conf.ImmutableClassesGiraphConfiguration;
 import org.apache.giraph.graph.Vertex;
 import org.apache.giraph.io.formats.GiraphFileInputFormat;
 import org.apache.giraph.io.formats.IdWithValueTextOutputFormat;
-import org.apache.giraph.io.formats.IntIntNullIntTextInputFormat;
+import org.apache.giraph.io.formats.IntIntNullTextInputFormat;
 import org.apache.hadoop.fs.Path;
 import org.apache.hadoop.io.IntWritable;
 import org.apache.hadoop.io.NullWritable;
@@ -204,7 +204,7 @@ public class TestYarnJob implements Watcher {
     conf.setYarnLibJars(""); // no need
     conf.setYarnTaskHeapMb(256); // small since no work to be done
     conf.setVertexClass(DummyYarnVertex.class);
-    conf.setVertexInputFormatClass(IntIntNullIntTextInputFormat.class);
+    conf.setVertexInputFormatClass(IntIntNullTextInputFormat.class);
     conf.setVertexOutputFormatClass(IdWithValueTextOutputFormat.class);
     conf.setNumComputeThreads(1);
     conf.setMaxTaskAttempts(1);