Uploaded image for project: 'Cassandra'
  1. Cassandra
  2. CASSANDRA-12787

Reduce instanceOf() type checking to improve performance

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Open
    • Normal
    • Resolution: Unresolved
    • None
    • None
    • None
    • The tests and examples stated were run on:
      Intel (R) Xeon (R) CPU E5-2699 v3 @ 2.30GHz, HT Enabled
      Oracle JDK 1.8
      Cassandra 3.10-SNAPSHOT
      Linux kernel 4.7

    Description

      While performance profiling Cassandra with cassandra-stress test on a pure write workload, we noticed that one of the hot methods for Cassandra server is the compareTo( PartitionPosition pos) function in org.apache.cassandra.db.DecoratedKey. The actual root cause of the problem is a slowdown in Java's instanceof operator.

      Our initial performance testing using a hacked JVM shows about 61% increase in throughput and about 15% reduction in 99 percentile latency. Data shows that improvements are from the removal of thread contention caused by Instanceof operator.

      Currently, we are working on a JDK fix to solve this issue. In the meantime, we think it will be beneficial to address this issue at Java application level as well. We are in the process of creating a patch to Cassandra replacing instanceof check with virtual method calls. The patch will be available in this thread for review soon. Please let us know your feedback and comments.

      For more details please refer to the attached pdf.

      Attachments

        1. instanceof.png
          86 kB
          T Jake Luciani
        2. reduce_instanceof_typechecking.pdf
          115 kB
          shylaja kokoori

        Issue Links

          Activity

            People

              Unassigned Unassigned
              skokoori shylaja kokoori
              Votes:
              1 Vote for this issue
              Watchers:
              21 Start watching this issue

              Dates

                Created:
                Updated: