Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6682459

Lock contention due to debug print

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • 1.4.0
    • 6u6
    • xml
    • 1.4
    • sparc
    • solaris_10
    • Verified

        During one of the JCAPS benchmark testing I ran into the following lock contention issue. The thread dump of the contention point is given below -

        "p: thread-pool-1; w: 3" daemon prio=3 tid=0x090d7800 nid=0x37 waiting for monitor entry [0x31518000..0x31518c70]
          java.lang.Thread.State: BLOCKED (on object monitor)
               at java.util.Collections$SynchronizedCollection.toString(Collections.java:1599)
               - waiting to lock <0x3fe503b0> (a java.util.Collections$SynchronizedRandomAccessList)
               at java.lang.String.valueOf(String.java:2827)
               at java.lang.StringBuilder.append(StringBuilder.java:115)
               at com.sun.enterprise.loader.EJBClassLoader.toString(EJBClassLoader.java:786)
               at java.lang.String.valueOf(String.java:2827)
               at java.lang.StringBuilder.append(StringBuilder.java:115)
               at com.sun.org.apache.xalan.internal.xsltc.dom.ObjectFactory.lookUpFactoryClass(ObjectFactory.java:220)
               at com.sun.org.apache.xalan.internal.xsltc.dom.XSLTCDTMManager.getDTMManagerClass(XSLTCDTMManager.java:101)

        The associated code at com.sun.org.apache.xalan.internal.xsltc.dom.ObjectFactory.lookUpFactoryClass is

               debugPrintln("created new instance of " + providerClass +
                          " using ClassLoader: " + cl);

        Even though the debug is not turned on, the entire String is required to be created before the debugPrintln method can be called. It is during the process of this String creating the lock is contented. A simple fix for this is to call the debugPrintln method only if DEBUG is enabled. I ran some experiments with that modification and got a 24% improvement in our microbenchmark.
        During one of the JCAPS benchmark testing I ran into the following lock contention issue. The thread dump of the contention point is given below -

        "p: thread-pool-1; w: 3" daemon prio=3 tid=0x090d7800 nid=0x37 waiting for monitor entry [0x31518000..0x31518c70]
          java.lang.Thread.State: BLOCKED (on object monitor)
               at java.util.Collections$SynchronizedCollection.toString(Collections.java:1599)
               - waiting to lock <0x3fe503b0> (a java.util.Collections$SynchronizedRandomAccessList)
               at java.lang.String.valueOf(String.java:2827)
               at java.lang.StringBuilder.append(StringBuilder.java:115)
               at com.sun.enterprise.loader.EJBClassLoader.toString(EJBClassLoader.java:786)
               at java.lang.String.valueOf(String.java:2827)
               at java.lang.StringBuilder.append(StringBuilder.java:115)
               at com.sun.org.apache.xalan.internal.xsltc.dom.ObjectFactory.lookUpFactoryClass(ObjectFactory.java:220)
               at com.sun.org.apache.xalan.internal.xsltc.dom.XSLTCDTMManager.getDTMManagerClass(XSLTCDTMManager.java:101)

        The associated code at com.sun.org.apache.xalan.internal.xsltc.dom.ObjectFactory.lookUpFactoryClass is

               debugPrintln("created new instance of " + providerClass +
                          " using ClassLoader: " + cl);

        Even though the debug is not turned on, the entire String is required to be created before the debugPrintln method can be called. It is during the process of this String creating the lock is contented. A simple fix for this is to call the debugPrintln method only if DEBUG is enabled. I ran some experiments with that modification and got a 24% improvement in our microbenchmark.
        During one of the JCAPS benchmark testing I ran into the following lock contention issue. The thread dump of the contention point is given below -

        "p: thread-pool-1; w: 3" daemon prio=3 tid=0x090d7800 nid=0x37 waiting for monitor entry [0x31518000..0x31518c70]
          java.lang.Thread.State: BLOCKED (on object monitor)
               at java.util.Collections$SynchronizedCollection.toString(Collections.java:1599)
               - waiting to lock <0x3fe503b0> (a java.util.Collections$SynchronizedRandomAccessList)
               at java.lang.String.valueOf(String.java:2827)
               at java.lang.StringBuilder.append(StringBuilder.java:115)
               at com.sun.enterprise.loader.EJBClassLoader.toString(EJBClassLoader.java:786)
               at java.lang.String.valueOf(String.java:2827)
               at java.lang.StringBuilder.append(StringBuilder.java:115)
               at com.sun.org.apache.xalan.internal.xsltc.dom.ObjectFactory.lookUpFactoryClass(ObjectFactory.java:220)
               at com.sun.org.apache.xalan.internal.xsltc.dom.XSLTCDTMManager.getDTMManagerClass(XSLTCDTMManager.java:101)

        The associated code at com.sun.org.apache.xalan.internal.xsltc.dom.ObjectFactory.lookUpFactoryClass is

               debugPrintln("created new instance of " + providerClass +
                          " using ClassLoader: " + cl);

        Even though the debug is not turned on, the entire String is required to be created before the debugPrintln method can be called. It is during the process of this String creating the lock is contented. A simple fix for this is to call the debugPrintln method only if DEBUG is enabled. I ran some experiments with that modification and got a 24% improvement in our microbenchmark.

              joehw Joe Wang
              duke J. Duke
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

                Created:
                Updated:
                Resolved:
                Imported:
                Indexed: