DomGarguilo commented on issue #1841:
URL: https://github.com/apache/accumulo/issues/1841#issuecomment-749789314
When I run these tests they only take about 40 seconds each, but it appears
that a significant amount of time is spent within both tests in:
```
for (Future<?> future : futures) {
future.get();
}
```
From what I know, ```future.get();``` is used to retrieve the result of a
future and will block until the result is ready. Maybe there is an issue with
some of the threads blocking for long amounts of time. I'm not sure if this is
what caused the excessively long run times you observed but it might be worth
investigating.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]