Repository: giraph Updated Branches: refs/heads/trunk dc4d9a2a7 -> 705f93d15
GIRAPH-979: Add type of input to 'missing input' error message (majakabiljo) Project: http://git-wip-us.apache.org/repos/asf/giraph/repo Commit: http://git-wip-us.apache.org/repos/asf/giraph/commit/705f93d1 Tree: http://git-wip-us.apache.org/repos/asf/giraph/tree/705f93d1 Diff: http://git-wip-us.apache.org/repos/asf/giraph/diff/705f93d1 Branch: refs/heads/trunk Commit: 705f93d15cbe6294229ad483667527eeef830a73 Parents: dc4d9a2 Author: Maja Kabiljo <[email protected]> Authored: Wed Jan 7 10:59:13 2015 -0800 Committer: Maja Kabiljo <[email protected]> Committed: Wed Jan 7 11:00:08 2015 -0800 ---------------------------------------------------------------------- CHANGELOG | 2 ++ .../src/main/java/org/apache/giraph/master/BspServiceMaster.java | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/giraph/blob/705f93d1/CHANGELOG ---------------------------------------------------------------------- diff --git a/CHANGELOG b/CHANGELOG index 08fe806..f169fe0 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,8 @@ Giraph Change Log Release 1.2.0 - unreleased + GIRAPH-979: Add type of input to 'missing input' error message (majakabiljo) + GIRAPH-975: In-proc ZooKeeper server with Master process (edunov) GIRAPH-977: useMessageSizeEncoding is broken (majakabiljo) http://git-wip-us.apache.org/repos/asf/giraph/blob/705f93d1/giraph-core/src/main/java/org/apache/giraph/master/BspServiceMaster.java ---------------------------------------------------------------------- diff --git a/giraph-core/src/main/java/org/apache/giraph/master/BspServiceMaster.java b/giraph-core/src/main/java/org/apache/giraph/master/BspServiceMaster.java index 884dd83..49ceb9d 100644 --- a/giraph-core/src/main/java/org/apache/giraph/master/BspServiceMaster.java +++ b/giraph-core/src/main/java/org/apache/giraph/master/BspServiceMaster.java @@ -652,7 +652,8 @@ public class BspServiceMaster<I extends WritableComparable, getContext().setStatus("Failing job due to 0 input splits, " + "check input of " + inputFormat.getClass().getName() + "!"); setJobStateFailed("******* PLEASE CHECK YOUR INPUT TABLES - PARTITIONS " + - "WHICH YOU SPECIFIED ARE MISSING. FAILING THE JOB *******"); + "WHICH YOU SPECIFIED ARE MISSING (for " + inputSplitType + + " input). FAILING THE JOB *******"); } if (minSplitCountHint > splitList.size()) { LOG.warn(logPrefix + ": Number of inputSplits=" +
