lhotari opened a new pull request #3108: URL: https://github.com/apache/bookkeeper/pull/3108
Fixes #3105 ### Motivation - See #3105 for details. OrderedExecutor uses LinkedBlockingQueue which isn't the most performant BlockingQueue implementation. For example, it causes object allocations each time new items are added to the queue. More details in #153 where GrowableArrayBlockingQueue was added. ### Changes - Use GrowableArrayBlockingQueue introduced in #153 -- 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]
