You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Joshua McKenzie (JIRA)" <ji...@apache.org> on 2018/07/10 18:52:00 UTC

[jira] [Updated] (CASSANDRA-13903) Add JDK9 vectorizedMismatch array compare support

     [ https://issues.apache.org/jira/browse/CASSANDRA-13903?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Joshua McKenzie updated CASSANDRA-13903:
----------------------------------------
    Labels: Performance  (was: )

> Add JDK9 vectorizedMismatch array compare support
> -------------------------------------------------
>
>                 Key: CASSANDRA-13903
>                 URL: https://issues.apache.org/jira/browse/CASSANDRA-13903
>             Project: Cassandra
>          Issue Type: Improvement
>          Components: Local Write-Read Paths
>            Reporter: Yingqi Lu
>            Priority: Major
>              Labels: Performance
>
> Dear All,
> JDK9 has recently been released (http://openjdk.java.net/projects/jdk9/). It introduces a set of new vectorizedMismatch APIs for array comparison. On supported platforms, the new JDK9 implementation is intrisified to leverage SIMD instructions. For a byte array comparison, up to 64 bytes (512 bits) can be compared as a single unit. Feature details please refer to http://download.java.net/java/jdk9/docs/api/java/util/Arrays.html and https://bugs.openjdk.java.net/browse/JDK-8033148
> Currently in Cassandra, keys are implemented as ByteBuffers and compared as byte arrays most of the time. Key comparison, for example decorated key compare, it is either done with unsafe operation taking 8 bytes at a time, or pure java operation comparing byte by byte. This can be optimized with new JDK9 java.util.Arrays.compare APIs on modern CPUs.
> Please let us know your feedback. At the meantime, we will submit a patch with performance studies in couple of weeks.
> Thanks,
> Yingqi Lu



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cassandra.apache.org
For additional commands, e-mail: commits-help@cassandra.apache.org