Updated Branches: refs/heads/trunk 73d70bd89 -> f31c62575
GIRAPH-480 Add convergence detection to org.apache.giraph.examples.RandomWalkVertex Project: http://git-wip-us.apache.org/repos/asf/giraph/repo Commit: http://git-wip-us.apache.org/repos/asf/giraph/commit/f31c6257 Tree: http://git-wip-us.apache.org/repos/asf/giraph/tree/f31c6257 Diff: http://git-wip-us.apache.org/repos/asf/giraph/diff/f31c6257 Branch: refs/heads/trunk Commit: f31c62575453d6b4ae93ee20f8bd1d34f94a7217 Parents: 73d70bd fc2026f Author: Sebastian Schelter <[email protected]> Authored: Tue Mar 19 21:10:43 2013 +0100 Committer: Sebastian Schelter <[email protected]> Committed: Tue Mar 19 21:10:43 2013 +0100 ---------------------------------------------------------------------- CHANGELOG | 2 + .../LongDoubleNullDoubleTextInputFormat.java | 106 +++++++++++++++ .../org/apache/giraph/examples/PageRankVertex.java | 56 ++++++++ .../apache/giraph/examples/RandomWalkVertex.java | 98 ++++++++++---- .../examples/RandomWalkWithRestartVertex.java | 36 +++--- .../giraph/examples/RandomWalkWorkerContext.java | 26 +++-- ...texWithDoubleValueNullEdgeTextOutputFormat.java | 59 ++++++++ .../apache/giraph/examples/PageRankVertexTest.java | 89 ++++++++++++ .../giraph/examples/RandomWalkTestUtils.java | 46 +++++++ .../examples/RandomWalkWithRestartVertexTest.java | 46 +++---- 10 files changed, 481 insertions(+), 83 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/giraph/blob/f31c6257/CHANGELOG ---------------------------------------------------------------------- diff --cc CHANGELOG index 38350fa,f06627f..e4430f2 --- a/CHANGELOG +++ b/CHANGELOG @@@ -1,20 -1,6 +1,22 @@@ Giraph Change Log Release 0.2.0 - unreleased ++ GIRAPH-480: Add convergence detection to org.apache.giraph.examples.RandomWalkVertex (ssc) ++ + GIRAPH-565: Make an easy way to gather some logs from workers on master (majakabiljo) + + GIRAPH-559: use hive-io-experimental release (nitay) + + GIRAPH-562: Implement getConf/setConf in AbstractHive classes (majakabiljo) + + GIRAPH-561: Only print vertex/edge input classes if not null (aching) + + GIRAPH-554: Set PartitionContext in InternalVertexRunner (majakabiljo) + + GIRAPH-559: Giraph build breaks (nitay) + + GIRAPH-550: HiveVertexReader should call initialize, not users (nitay) + GIRAPH-523: MasterObserver should pass in superstep number (gaurav.menghani via nitay) GIRAPH-556: Race condition in EdgeStore (apresta)
