Return-Path: Delivered-To: apmail-lucene-dev-archive@www.apache.org Received: (qmail 5448 invoked from network); 1 Jun 2010 23:36:01 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 1 Jun 2010 23:36:01 -0000 Received: (qmail 79584 invoked by uid 500); 1 Jun 2010 23:36:00 -0000 Delivered-To: apmail-lucene-dev-archive@lucene.apache.org Received: (qmail 79540 invoked by uid 500); 1 Jun 2010 23:36:00 -0000 Mailing-List: contact dev-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@lucene.apache.org Delivered-To: mailing list dev@lucene.apache.org Received: (qmail 79533 invoked by uid 99); 1 Jun 2010 23:36:00 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Jun 2010 23:36:00 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Jun 2010 23:35:58 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o51NZZPe025386 for ; Tue, 1 Jun 2010 23:35:36 GMT Message-ID: <32454317.118061275435335975.JavaMail.jira@thor> Date: Tue, 1 Jun 2010 19:35:35 -0400 (EDT) From: "Michael McCandless (JIRA)" To: dev@lucene.apache.org Subject: [jira] Resolved: (LUCENE-2161) Some concurrency improvements for NRT MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/LUCENE-2161?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Michael McCandless resolved LUCENE-2161. ---------------------------------------- Resolution: Fixed > Some concurrency improvements for NRT > ------------------------------------- > > Key: LUCENE-2161 > URL: https://issues.apache.org/jira/browse/LUCENE-2161 > Project: Lucene - Java > Issue Type: Improvement > Components: Index > Reporter: Michael McCandless > Assignee: Michael McCandless > Priority: Minor > Fix For: 2.9.3, 3.0.2, 3.1, 4.0 > > Attachments: LUCENE-2161.patch > > > Some concurrency improvements for NRT > I found & fixed some silly thread bottlenecks that affect NRT: > * Multi/DirectoryReader.numDocs is synchronized, I think so only 1 > thread computes numDocs if it's -1. I removed this sync, and made > numDocs volatile, instead. Yes, multiple threads may compute the > numDocs for the first time, but I think that's harmless? > * Fixed BitVector's ctor to set count to 0 on creating a new BV, and > clone to copy the count over; this saves CPU computing the count > unecessarily. > * Also strengthened assertions done in SR, testing the delete docs > count. > I also found an annoying thread bottleneck that happens, due to CMS. > Whenever CMS hits the max running merges (default changed from 3 to 1 > recently), and the merge policy now wants to launch another merge, it > forces the incoming thread to wait until one of the BG threads > finishes. > This is a basic crude throttling mechanism -- you force the mutators > (whoever is causing new segments to appear) to stop, so that merging > can catch up. > Unfortunately, when stressing NRT, that thread is the one that's > opening a new NRT reader. > So, the first serious problem happens when you call .reopen() on your > NRT reader -- this call simply forwards to IW.getReader if the reader > was an NRT reader. But, because DirectoryReader.doReopen is > synchronized, this had the horrible effect of holding the monitor lock > on your main IR. In my test, this blocked all searches (since each > search uses incRef/decRef, still sync'd until LUCENE-2156, at least). > I fixed this by making doReopen only sync'd on this if it's not simply > forwarding to getWriter. So that's a good step forward. > This prevents searches from being blocked while trying to reopen to a > new NRT. > However... it doesn't fix the problem that when an immense merge is > off and running, opening an NRT reader could hit a tremendous delay > because CMS blocks it. The BalancedSegmentMergePolicy should help > here... by avoiding such immense merges. > But, I think we should also pursue an improvement to CMS. EG, if it > has 2 merges running, where one is huge and one is tiny, it ought to > increase thread priority of the tiny one. I think with such a change > we could increase the max thread count again, to prevent this > starvation. I'll open a separate issue.... -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org For additional commands, e-mail: dev-help@lucene.apache.org