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

Race condition still exists in StreamingUpdateSolrServer which could cause it to hang

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 1.4.1
    • 3.1, 4.0-ALPHA
    • clients - java
    • None

    Description

      We are still seeing the same issue as SOLR-1711 & SOLR-1885 with Solr1.4.1
      We get into this situation when all the runner threads die due to a broken pipe, while the BlockingQueue is still full. All of the producer threads are all blocked on the BlockingQueue.put() method. Since the runners are spawned by the producers, which are all blocked, runner threads never get created to drain the queue.

      Here's a potential fix. In the runner code, replace these lines:

      // remove it from the list of running things...
      synchronized (runners) {
          runners.remove( this );
      }
      

      with these lines:

      // remove it from the list of running things unless we are the last runner and the queue is full...
      synchronized (runners) {
          if (runners.size() == 1 && queue.remainingCapacity() == 0) {
              // keep this runner alive
              scheduler.execute(this);
          } else {
              runners.remove( this );
          }
      }
      

      Attachments

        Issue Links

          Activity

            People

              Unassigned Unassigned
              jtuchscherer Johannes
              Votes:
              1 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: