DomGarguilo opened a new issue, #5849:
URL: https://github.com/apache/accumulo/issues/5849
**Is your feature request related to a problem? Please describe.**
In some ITs we use a pattern where we have a `CountDownLatch` and do the
following within a `Future` task:
```java
var future = executorService.submit(() -> {
latch.countDown();
latch.await();
...
}
```
This makes each thread wait at the await line until `countDown() is called
the desired number of times. This makes all threads start executing the desired
code at the same time which increases the stress of the test case.
--
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]