URL: https://issues.apache.org/jira/browse/KAFKA-17423
The above is an improvement to Kafka to replace the sorted list ACL implementation with a Trie based implementation. I have an implementation that passes all the tests, including the new ones in KAFKA-17316 (pull request https://github.com/apache/kafka/pull/16779). Data from the JMS test suite indicates that the Trie implementation is at least an order of magnitude faster than the existing implementation. The change does not modify any API, it simply replaces the StandardAuthorizerData class with a Trie structure based class. Is there any reason not to implement this change? Claude