Uploaded image for project: 'Harmony'
  1. Harmony
  2. HARMONY-6362

Logging performance improvements

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Closed
    • Minor
    • Resolution: Fixed
    • None
    • 5.0M12
    • Classlib
    • None
    • SVN Revision: 829932
    • Patch Available
    • Moderate

    Description

      The logging module performs more synchronization and object allocation than necessary. In particular, getHandlers() always needs synchronization and creates an array. By adopting util.concurrent features (CopyOnWriteArrayList) and coding to the common case (when there are zero handlers) I saw a 2.5x improvement in throughput for calls to logger.log(Level, String). In a benchmark that measures calls to "logger.info", call time improved from 385000ns to 154000ns per message.

      Here's an overview of the patch:

      • Reduce the use of synchronization by adopting a CopyOnWriteArrayList for Handlers
      • Reduce object creation by reusing a 0-length handlers array in getHandlers()
      • Load handlers on logger creation rather than on receipt of the first message. This also fixes a behavioural inconsistency with the RI. I've got a test case that demonstrates this.
      • Cleanup synchronization by moving methods with "synchronized (LogManager.getManager())" blocks to the LogManager class

      I've got the patch ready to submit upstream. I'll submit it when my commit privileges are granted, unless anyone raises objections here.

      Attachments

        Activity

          People

            Unassigned Unassigned
            jessewilson Jesse Wilson
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Time Tracking

                Estimated:
                Original Estimate - 120h
                120h
                Remaining:
                Remaining Estimate - 120h
                120h
                Logged:
                Time Spent - Not Specified
                Not Specified