Repository: hbase
Updated Branches:
  refs/heads/master 074f83c80 -> 51cc4fed0


HBASE-11674 LoadIncrementalHFiles should be more verbose after unrecoverable 
error (Jan Lukavsky)


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/51cc4fed
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/51cc4fed
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/51cc4fed

Branch: refs/heads/master
Commit: 51cc4fed0a9195a881dc1dea6146a879ee6696fb
Parents: 074f83c
Author: Nick Dimiduk <[email protected]>
Authored: Tue Aug 5 15:21:00 2014 -0700
Committer: Nick Dimiduk <[email protected]>
Committed: Tue Aug 5 15:21:00 2014 -0700

----------------------------------------------------------------------
 .../org/apache/hadoop/hbase/mapreduce/LoadIncrementalHFiles.java  | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/51cc4fed/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/LoadIncrementalHFiles.java
----------------------------------------------------------------------
diff --git 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/LoadIncrementalHFiles.java
 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/LoadIncrementalHFiles.java
index df8a840..a1f79b4 100644
--- 
a/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/LoadIncrementalHFiles.java
+++ 
b/hbase-server/src/main/java/org/apache/hadoop/hbase/mapreduce/LoadIncrementalHFiles.java
@@ -692,7 +692,8 @@ public class LoadIncrementalHFiles extends Configured 
implements Tool {
       // success
       return toRetry;
     } catch (IOException e) {
-      LOG.error("Encountered unrecoverable error from region server", e);
+      LOG.error("Encountered unrecoverable error from region server, 
additional details: "
+          + svrCallable.getExceptionMessageAdditionalDetail(), e);
       throw e;
     }
   }

Reply via email to