keith-turner opened a new issue, #239: URL: https://github.com/apache/accumulo-testing/issues/239
While debugging apache/accumulo#3006 I spent a while trying to determine what markers were missing. It would be nice to have the verify code just print this information out when it fails. In the test that failed the following error was printed ``` Caused by: java.lang.Exception: Bad key at r00000 cf:000 [] 1665128566432 false=-1 ``` Through manual analysis I determined that marker 153 was missing. Would be nice if the error message gave this info, would really speed up debugging issues found by the test. Thinking maybe an error message like the following would be really useful. ``` Caused by: java.lang.Exception: Bad key at r00000 cf:000 [] 1665128566432 false=-1 missing markers : [0000153] ``` The code that prints this error message is here https://github.com/apache/accumulo-testing/blob/ddc6e589a6703239b7445075172fe88308e5a0ef/src/main/java/org/apache/accumulo/testing/randomwalk/bulk/Verify.java#L73 Below that code is some code that analyzes markers, but it does not run when the count is not zero. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
