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

LatchWatcher.await doesn’t protect against spurious wakeup

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Minor
    • Resolution: Fixed
    • None
    • 7.3, 8.0
    • None
    • None

    Description

      I noticed that LatchWatcher.await does:

      public void await(long timeout) throws InterruptedException {
            synchronized (lock) {
              if (this.event != null) return;
              lock.wait(timeout);
            }
          }
      

      while the recommendation of lock.wait is to check the wait condition even after the method returns in case of spurious wakeup. lock is a private local field to which notifyAll is called only after a zk event is being handled. I think we should check the await method to something like:

      public void await(long timeout) throws InterruptedException {
            assert timeout > 0;
            long timeoutTime = System.currentTimeMillis() + timeout;
            synchronized (lock) {
              while (this.event == null) {
                long nextTimeout = timeoutTime - System.currentTimeMillis();
                if (nextTimeout <= 0) {
                  return;
                }
                lock.wait(nextTimeout);
              }
            }
          }
      

      Attachments

        1. SOLR-11782.patch
          0.9 kB
          Tomas Eduardo Fernandez Lobbe
        2. SOLR-11782.patch
          7 kB
          Tomas Eduardo Fernandez Lobbe
        3. SOLR-11782.patch
          8 kB
          Tomas Eduardo Fernandez Lobbe

        Activity

          People

            tflobbe Tomas Eduardo Fernandez Lobbe
            tflobbe Tomas Eduardo Fernandez Lobbe
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: