Return-Path: Delivered-To: apmail-lucene-java-dev-archive@www.apache.org Received: (qmail 73615 invoked from network); 26 Oct 2009 10:14:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 26 Oct 2009 10:14:25 -0000 Received: (qmail 59061 invoked by uid 500); 26 Oct 2009 10:14:24 -0000 Delivered-To: apmail-lucene-java-dev-archive@lucene.apache.org Received: (qmail 59000 invoked by uid 500); 26 Oct 2009 10:14:24 -0000 Mailing-List: contact java-dev-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: java-dev@lucene.apache.org Delivered-To: mailing list java-dev@lucene.apache.org Received: (qmail 58992 invoked by uid 99); 26 Oct 2009 10:14:24 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 26 Oct 2009 10:14:24 +0000 X-ASF-Spam-Status: No, hits=-6.5 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 26 Oct 2009 10:14:19 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 611B3234C045 for ; Mon, 26 Oct 2009 03:13:59 -0700 (PDT) Message-ID: <1883225349.1256552039383.JavaMail.jira@brutus> Date: Mon, 26 Oct 2009 10:13:59 +0000 (UTC) From: "Uwe Schindler (JIRA)" To: java-dev@lucene.apache.org Subject: [jira] Commented: (LUCENE-2010) Remove segments with all documents deleted in commit/flush/close of IndexWriter instead of waiting until a merge occurs. In-Reply-To: <204693732.1256551919361.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/LUCENE-2010?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12769970#action_12769970 ] Uwe Schindler commented on LUCENE-2010: --------------------------------------- There is one special case: If you delete *all* documents from the whole index, no segments would keep alive if automatically removed. Can we handle that? It should remain an empty segments_xxx file. > Remove segments with all documents deleted in commit/flush/close of IndexWriter instead of waiting until a merge occurs. > ------------------------------------------------------------------------------------------------------------------------ > > Key: LUCENE-2010 > URL: https://issues.apache.org/jira/browse/LUCENE-2010 > Project: Lucene - Java > Issue Type: Improvement > Components: Index > Affects Versions: 2.9 > Reporter: Uwe Schindler > > I do not know if this is a bug in 2.9.0, but it seems that segments with all documents deleted are not automatically removed: > {noformat} > 4 of 14: name=_dlo docCount=5 > compound=true > hasProx=true > numFiles=2 > size (MB)=0.059 > diagnostics = {java.version=1.5.0_21, lucene.version=2.9.0 817268P - 2009-09-21 10:25:09, os=SunOS, > os.arch=amd64, java.vendor=Sun Microsystems Inc., os.version=5.10, source=flush} > has deletions [delFileName=_dlo_1.del] > test: open reader.........OK [5 deleted docs] > test: fields..............OK [136 fields] > test: field norms.........OK [136 fields] > test: terms, freq, prox...OK [1698 terms; 4236 terms/docs pairs; 0 tokens] > test: stored fields.......OK [0 total field count; avg ? fields per doc] > test: term vectors........OK [0 total vector count; avg ? term/freq vector fields per doc] > {noformat} > Shouldn't such segments not be removed automatically during the next commit/close of IndexWriter? > *Mike McCandless:* > Lucene doesn't actually short-circuit this case, ie, if every single doc in a given segment has been deleted, it will still merge it [away] like normal, rather than simply dropping it immediately from the index, which I agree would be a simple optimization. Can you open a new issue? I would think IW can drop such a segment immediately (ie not wait for a merge or optimize) on flushing new deletes. -- 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: java-dev-unsubscribe@lucene.apache.org For additional commands, e-mail: java-dev-help@lucene.apache.org