Uploaded image for project: 'Solr'
  1. Solr
  2. SOLR-5721

ConnectionManager can become stuck in likeExpired

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 4.6.1
    • 4.7, 6.0
    • SolrCloud
    • None

    Description

      Here are the sequence of events:

      • we disconnect
      • The disconnect timer beings to run (so no longer scheduled), but doesn't set likelyExpired yet
      • We connect, and set likelyExpired = false
      • The disconnect thread runs and sets likelyExpired to true, and it is never set back to false (note that we cancel the disconnect thread but that only cancels scheduled tasks but not running tasks).

      This is pretty difficult to reproduce without doing more work in the disconnect thread. It's easy to reproduce by adding sleeps in various places – I have a test that I'll attach that does that.

      The most straightforward way to solve this would be to grab the synchronization lock on ConnectionManager in the disconnect thread, ensure we aren't actually connected, and only then setting likelyExpired to true. In code:

      synchronized (ConnectionManager.this) {
        if (!connected) likelyExpired = true;
      }
      

      but this is all pretty subtle and error prone. It's easier to just get rid of the disconnect thread and record the last time we disconnected. Then, when we check likelyExpired, we just do a quick calculation to see if we are likelyExpired.

      Attachments

        1. SOLR-5721.patch
          7 kB
          Gregory Chanan
        2. SOLR-5721test.patch
          4 kB
          Gregory Chanan

        Activity

          People

            markrmiller@gmail.com Mark Miller
            gchanan Gregory Chanan
            Votes:
            0 Vote for this issue
            Watchers:
            5 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: