Uploaded image for project: 'Derby'
  1. Derby
  2. DERBY-212 Optimize some specific methods in Network Server to improve performance
  3. DERBY-825

writeSQLCAGRP() should use byte[] constants instead of Strings where feasible

    XMLWordPrintableJSON

Details

    • Sub-task
    • Status: Closed
    • Minor
    • Resolution: Fixed
    • 10.1.2.1
    • 10.1.3.1
    • Network Server
    • None
    • Performance

    Description

      writeSQLCAGRP() writes Strings into the message being built. Profiling shows that it is more expensive to write a String than a byte[] because the String must be converted to UTF8. writeSQLCAGRP() writes 5 bytes for SQLState, and this is done by either writing a String constant, or the return value from SQLException.getSQLState(). For the common case where there is no exception (SQLState = 5xspace), or the exception is a "dummy" exception (SQLState=00000 or 02000, End of Data), this is wasteful because the String has to be converted to byte[] each time, and in the case of the dummy exception, a new String object will be created each time getSQLState() is called, even if the exception object is the same (there is no caching, which is reasonable since exceptions are meant to be thrown, not kept around for a long time).

      A solution is to keep the commonly used SQLStates as byte[] constants that can be inserted into the message with writeBytes().

      If writeSQLCAGRP() is called with no SQLException (null) there is no attempt to put an internationalized error message into the outgoing message (The third argument to writeSQLCAXGRP() is null). This is reasonable, but the same optimization is not done when the exception is one of the dummy exceptions mentioned previously. In this case an internationalized version of the message "End of Data" is constructed and inserted into the message. It would be better to call writeSQLCAXGRP(..,null,..) in this case as well, since it isn't needed by the client in this case.

      Finally, writeSQLCAERRWARN() uses writeScalarPaddedBytes() to write values that also can be stored as byte[] constants, and written faster with writeBytes()

      Attachments

        1. derby-825.diff
          9 kB
          Dyre Tjeldvoll
        2. derby-825.stat
          0.4 kB
          Dyre Tjeldvoll
        3. derbynetclientmats_report.txt
          203 kB
          Dyre Tjeldvoll

        Activity

          People

            dyret Dyre Tjeldvoll
            dyret Dyre Tjeldvoll
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: