You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Michael McCandless (JIRA)" <ji...@apache.org> on 2016/11/30 15:49:58 UTC

[jira] [Commented] (LUCENE-7570) Tragic events during merges can lead to deadlock

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

Michael McCandless commented on LUCENE-7570:
--------------------------------------------

Thanks for reporting this [~marumarutan], I'll have a look.

> Tragic events during merges can lead to deadlock
> ------------------------------------------------
>
>                 Key: LUCENE-7570
>                 URL: https://issues.apache.org/jira/browse/LUCENE-7570
>             Project: Lucene - Core
>          Issue Type: Bug
>          Components: core/index
>    Affects Versions: 5.5, master (7.0)
>            Reporter: Joey Echeverria
>         Attachments: thread_dump.txt
>
>
> When an {{IndexWriter#commit()}} is stalled due to too many pending merges, you can get a deadlock if the currently active merge thread hits a tragic event.
> # The thread performing the commit synchronizes on the the {{commitLock}} in {{commitInternal}}.
> # The thread goes on to to call {{ConcurrentMergeScheduler#doStall()}} which {{waits()}} on the {{ConcurrentMergeScheduler}} object. This release the merge scheduler's monitor lock, but not the {{commitLock}} in {{IndexWriter}}.
> # Sometime after this wait begins, the merge thread gets a tragic exception can calls {{IndexWriter#tragicEvent()}} which in turn calls {{IndexWriter#rollbackInternal()}}.
> # The {{IndexWriter#rollbackInternal()}} synchronizes on the {{commitLock}} which is still held by the committing thread from (1) above which is waiting on the merge(s) to complete. Hence, deadlock.
> We hit this bug with Lucene 5.5, but I looked at the code in the master branch and it looks like the deadlock still exists there as well.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

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