keith-turner commented on issue #5724: URL: https://github.com/apache/accumulo/issues/5724#issuecomment-3084691519
Similar to this comment https://github.com/apache/accumulo/issues/5723#issuecomment-3084641806 we could create a test that verifies that zookeeper handles the concurrency correctly. Test could do something like the following. ```java for(int i = 0; i<30;i++){ for(int j =0; j<10; j++){ //TODO put 10 task on a thread pool to reserve a table name calling the ZK code that does this // TODO ensure 1 task succeeded and 9 failed // TODO check the table name mapping ZK has the table id of the successful task } } ``` -- 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]
