[ 
https://issues.apache.org/jira/browse/SOLR-11782?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16345927#comment-16345927
 ] 

ASF subversion and git services commented on SOLR-11782:
--------------------------------------------------------

Commit b310514becf93ff3a9eaf5bd7af632b591b22a80 in lucene-solr's branch 
refs/heads/master from [~tomasflobbe]
[ https://git-wip-us.apache.org/repos/asf?p=lucene-solr.git;h=b310514 ]

SOLR-11782: Use await(millis, TimeUnit.MILLIS) in LatchWatcher.await


> LatchWatcher.await doesn’t protect against spurious wakeup
> ----------------------------------------------------------
>
>                 Key: SOLR-11782
>                 URL: https://issues.apache.org/jira/browse/SOLR-11782
>             Project: Solr
>          Issue Type: Bug
>      Security Level: Public(Default Security Level. Issues are Public) 
>            Reporter: Tomás Fernández Löbbe
>            Assignee: Tomás Fernández Löbbe
>            Priority: Minor
>             Fix For: master (8.0), 7.3
>
>         Attachments: SOLR-11782.patch, SOLR-11782.patch, SOLR-11782.patch
>
>
> I noticed that {{LatchWatcher.await}} does:
> {code}
> public void await(long timeout) throws InterruptedException {
>       synchronized (lock) {
>         if (this.event != null) return;
>         lock.wait(timeout);
>       }
>     }
> {code}
> 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:
> {code}
> 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);
>         }
>       }
>     }
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org

Reply via email to