[
https://issues.apache.org/jira/browse/HBASE-7681?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13563668#comment-13563668
]
Ted Yu commented on HBASE-7681:
-------------------------------
Looking at
https://issues.apache.org/jira/secure/attachment/12565724/7507-94.patch :
{code}
+ } catch (Exception e) {
+ LOG.warn("Failed validating store file " + pathName
+ + ", retring num=" + i, e);
+ if (e instanceof IOException) {
+ lastException = (IOException) e;
+ } else {
+ lastException = new IOException(e);
+ }
+ }
+ } catch (IOException e) {
+ LOG.warn("Failed flushing store file, retring num=" + i, e);
{code}
I searched for the two strings which start with 'Failed ' in
https://builds.apache.org/job/HBase-0.94/781/testReport/org.apache.hadoop.hbase.regionserver/TestAtomicOperation/testRowMutationMultiThreads/
but didn't find any occurrence.
> Investigate recent random test failures in 0.94
> -----------------------------------------------
>
> Key: HBASE-7681
> URL: https://issues.apache.org/jira/browse/HBASE-7681
> Project: HBase
> Issue Type: Bug
> Reporter: Lars Hofhansl
> Assignee: Lars Hofhansl
> Fix For: 0.96.0, 0.94.5
>
> Attachments: 7681-0.94-combined.txt, 7681-0.94-combined_v2.txt,
> 7681-0.94.txt, 7681-0.96-combined.txt, 7681-0.96-combined.txt,
> 7681-94-v1.txt, 7681-94-v2.txt, 7681-94-v3.txt, 7681-trunk-v1.txt
>
>
> I've seen many unspecific test failures recently that cannot be reproduced
> locally even when running these test is a loop for a very long time.
> Many of these test one way or the other make assumption w.r.t. wall clock
> time. While I cannot fix that, an option to increase some of these timeout a
> bit.
> This issue is to remind me to do that.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira