This is an automated email from the ASF dual-hosted git repository.

kturner pushed a commit to branch 1.9
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/1.9 by this push:
     new 787a528  fixes #920 retry minc on unsatisfied link error (#925)
787a528 is described below

commit 787a52884ac23f85a5887ba2d026cf88287dfc49
Author: Keith Turner <ktur...@apache.org>
AuthorDate: Fri Feb 1 15:19:08 2019 -0500

    fixes #920 retry minc on unsatisfied link error (#925)
---
 .../main/java/org/apache/accumulo/tserver/tablet/MinorCompactor.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/server/tserver/src/main/java/org/apache/accumulo/tserver/tablet/MinorCompactor.java
 
b/server/tserver/src/main/java/org/apache/accumulo/tserver/tablet/MinorCompactor.java
index 66a15ec..ce6221e 100644
--- 
a/server/tserver/src/main/java/org/apache/accumulo/tserver/tablet/MinorCompactor.java
+++ 
b/server/tserver/src/main/java/org/apache/accumulo/tserver/tablet/MinorCompactor.java
@@ -133,7 +133,7 @@ public class MinorCompactor extends Compactor {
           }
 
           return ret;
-        } catch (IOException e) {
+        } catch (IOException | UnsatisfiedLinkError e) {
           log.warn("MinC failed ({}) to create {} retrying ...", 
e.getMessage(), outputFileName);
           ProblemReports.getInstance(tabletServer).report(new ProblemReport(
               getExtent().getTableId(), ProblemType.FILE_WRITE, 
outputFileName, e));

Reply via email to