Uploaded image for project: 'logback'
  1. logback
  2. LOGBACK-375

Interleaved messages from multiple threads

    XMLWordPrintable

Details

    • Icon: Bug Bug
    • Resolution: Cannot Reproduce
    • Icon: Critical Critical
    • None
    • 0.9.17
    • logback-classic
    • None
    • Mac OS X 10.5.8, Eclipse 20090920-1017, Java SE 6, Mac Pro with 2 processors with 4 cores each

    Description

      Note: I'm using pastebin so that the formatting is not messed with by JIRA and so that I can refer to line numbers. My apologies if that makes it more difficult to examine my files.

      I've just moved to logback from log4j (which I was using only with the default configuration) using the slf4j wrappers. I'm using a configuration which is a slightly changed version of one found in the documentation; the configuration can be found here:
      http://logback.pastebin.com/m1a6f2875

      These two log file excerpts are from that configuration:
      http://logback.pastebin.com/m5e08cb57 - note lines 3 and 4
      http://logback.pastebin.com/m7e575564 - note lines 2, 3, and 4

      Then this configuration, which only changes the class levels, is for the next log (I wanted to be precise):
      http://logback.pastebin.com/f6195004e

      This log file is from this morning:
      http://logback.pastebin.com/f42bdb83f

      Note lines 2 and 3.

      You'll notice, I'm sure, that these are all from the end of my log files; I have not observed this behavior elsewhere in my logs. The observed problems have been during my shutdown procedure. Specifically, the class PostItemSubmitter, with 4 threads, is waiting on input from CalaisSubmitter (it is trying to retrieve an object from a LinkedBlockingQueue with a get() operation). In these particular logs, CalaisSubmitter has run into fatal errors (over SLA, whoops) and has put no data in the queue, so all four threads are currently blocked on their input queue.

      After all of the CalaisSubmitter threads are shutdown, the main thread tries to shut down the PostItemSubmitter threads. It does this by calling a function in the thread's instance which sets a boolean value to false that controls the continued execution of the main program loop. After it has set those variables, the main thread will check the size of the queue; if it is 0, which it is in this case, then it will interrupt any threads that have not stopped after one second. It will do this immediately, so all four threads will receive Thread.interrupt() calls in sequence.

      When those threads are interrupted, they throw an InterruptedException. The catch statement looks like this:
      catch (InterruptedException e)

      { if (running) logger.error("Interrupted getting item from queue"); else logger.info("Shutdown aborted queue operation"); }

      In at least two of these three logs, it seems clear that the problem lies in how the interrupted threads are using the static logger defined for their class, which looks like this:
      private static Logger logger = LoggerFactory.getLogger(PostItemSubmitter.class);

      In the other log, the interleaving comes with the CalaisSubmitter, but you can see at least one aborted queue operation, so the reason could be similar (that class is also interrupted on an empty queue and catches those interrupts in the same way).

      Let me know if you need any more information to help diagnose the problem.

      Attachments

        Activity

          People

            logback-dev Logback dev list
            molson Michael Olson
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: