[jira] [Closed] (SOLR-8687) Race condition with RTGs during soft commit

2016-03-14 Thread Ishan Chattopadhyaya (JIRA)
was a condition whereby the searcher was opening fine before the RTG call, just that the update which I was sure should've been in the searcher was not (it was a DV update, as per work done in SOLR-5944). Sorry for the noise. > Race condition with RTGs during soft com

[jira] [Comment Edited] (SOLR-8687) Race condition with RTGs during soft commit

2016-02-18 Thread Ishan Chattopadhyaya (JIRA)
reproduce. > Race condition with RTGs during soft commit > --- > > Key: SOLR-8687 > URL: https://issues.apache.org/jira/browse/SOLR-8687 > Project: Solr > Issue Type: Bug >

[jira] [Comment Edited] (SOLR-8687) Race condition with RTGs during soft commit

2016-02-18 Thread Ishan Chattopadhyaya (JIRA)
. At this time, I am reasonably sure that the test had nothing to do with my other changes. Next up, I shall isolate the test from the other changes and try to run it on a fresh master so as to be sure I can reproduce. > Race condition with RTGs during soft com

[jira] [Commented] (SOLR-8687) Race condition with RTGs during soft commit

2016-02-18 Thread Ishan Chattopadhyaya (JIRA)
it on a fresh master so as to be sure I can reproduce. > Race condition with RTGs during soft commit > --- > > Key: SOLR-8687 > URL: https://issues.apache.org/jira/browse/SOLR-8687 > Project: Solr >

[jira] [Commented] (SOLR-8687) Race condition with RTGs during soft commit

2016-02-18 Thread Yonik Seeley (JIRA)
to synchronization in this area because it's hard to re-validate). We have stress tests for this, so it's also disconcerting if it's not air-tight and our tests don't catch it. I'll review the related code again... > Race condition with RTGs during soft com

[jira] [Commented] (SOLR-8687) Race condition with RTGs during soft commit

2016-02-18 Thread Shalin Shekhar Mangar (JIRA)
wait for the new searcher outside of the synchronized block and so as you said, a concurrent RTG request can miss updates. Perhaps [~ysee...@gmail.com] has a suggestion for us? > Race condition with RTGs during soft commit > --- > >

[jira] [Updated] (SOLR-8687) Race condition with RTGs during soft commit

2016-02-17 Thread Ishan Chattopadhyaya (JIRA)
a ulog.openRealtimeSearcher() in the above synchronized block, but the problem still persists, but I haven't looked into why that could be. > Race condition with RTGs during soft commit > --- > > Key: SOLR-8687 >

[jira] [Commented] (SOLR-8687) Race condition with RTGs during soft commit

2016-02-17 Thread Ishan Chattopadhyaya (JIRA)
/lucene-solr/blob/627b9ac9b46796f20be78b04ebbdfa4299b96ab7/solr/core/src/test/org/apache/solr/cloud/TestStressInPlaceUpdates.java > Race condition with RTGs during soft commit > --- > > Key: SOLR-8687 >

[jira] [Created] (SOLR-8687) Race condition with RTGs during soft commit

2016-02-17 Thread Ishan Chattopadhyaya (JIRA)
Ishan Chattopadhyaya created SOLR-8687: -- Summary: Race condition with RTGs during soft commit Key: SOLR-8687 URL: https://issues.apache.org/jira/browse/SOLR-8687 Project: Solr Issue

Re: Race condition with RTGs during soft commit

2016-02-17 Thread Ishan Chattopadhyaya
JIRA is back up, and I filed SOLR-8687. Thanks. On Thu, Feb 18, 2016 at 1:19 AM, Ishan Chattopadhyaya < ichattopadhy...@gmail.com> wrote: > I am facing a problem with stress testing SOLR-5944, even though I think > this problem persists in Solr even without my changes. > > The symptom is that

Race condition with RTGs during soft commit

2016-02-17 Thread Ishan Chattopadhyaya
I am facing a problem with stress testing SOLR-5944, even though I think this problem persists in Solr even without my changes. The symptom is that during a stress test (similar to TestStressReorder), RTG gets a document which is older version than that of the last acknowledged write. Possible