[
https://issues.apache.org/jira/browse/KAFKA-18402?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Christo Lolov updated KAFKA-18402:
----------------------------------
Fix Version/s: 4.3.0
(was: 4.2.0)
> Optimise of comparison on org.apache.kafka.common.Uuid
> -------------------------------------------------------
>
> Key: KAFKA-18402
> URL: https://issues.apache.org/jira/browse/KAFKA-18402
> Project: Kafka
> Issue Type: Improvement
> Components: clients
> Reporter: Said BOUDJELDA
> Assignee: Said BOUDJELDA
> Priority: Minor
> Labels: common
> Fix For: 4.3.0
>
>
> The the reference implementation for org.apache.kafka.common.Uuid compareTo
> public method as of java.util.UUID
> {code:java}
> @Override
> public int compareTo(UUID val) {
> // The ordering is intentionally set up so that the UUIDs
> // can simply be numerically compared as two numbers
> int mostSigBits = Long.compare(this.mostSigBits, val.mostSigBits);
> return mostSigBits != 0 ? mostSigBits :
> Long.compare(this.leastSigBits, val.leastSigBits);
> }
> {code}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)