ivandika3 opened a new pull request, #9696: URL: https://github.com/apache/ozone/pull/9696
## What changes were proposed in this pull request? Currently OmMetadataGenerator only creates a single client which are shared by all the threads. This is not suitable to test OM follower read since a single client will only stick with a single OM most of the time. We want the more clients so that the client workloads will be spread out to all the OM nodes. Also we can support an option to allow clients to initially only connect to OM followers. We can specify the number of clients needed. If the clients are more than the number of threads, we will bound it to the number of threads. Otherwise, we will create N number of clients and each thread with index i can use i % N client. The default number of clients is 1 to preserve compatibility. ## What is the link to the Apache JIRA https://issues.apache.org/jira/browse/HDDS-14447 ## How was this patch tested? CI (https://github.com/ivandika3/ozone/actions/runs/21566024816) -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
