Return-Path: Delivered-To: apmail-lucene-java-user-archive@www.apache.org Received: (qmail 81585 invoked from network); 20 Dec 2006 16:44:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 20 Dec 2006 16:44:50 -0000 Received: (qmail 78843 invoked by uid 500); 20 Dec 2006 16:44:49 -0000 Delivered-To: apmail-lucene-java-user-archive@lucene.apache.org Received: (qmail 78816 invoked by uid 500); 20 Dec 2006 16:44:49 -0000 Mailing-List: contact java-user-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: java-user@lucene.apache.org Delivered-To: mailing list java-user@lucene.apache.org Received: (qmail 78805 invoked by uid 99); 20 Dec 2006 16:44:49 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Dec 2006 08:44:49 -0800 X-ASF-Spam-Status: No, hits=0.8 required=10.0 tests=DNS_FROM_RFC_ABUSE,MAILTO_TO_SPAM_ADDR,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (herse.apache.org: domain of ssellman@valueclick.com designates 216.34.207.14 as permitted sender) Received: from [216.34.207.14] (HELO smtp2.corp.valueclick.com) (216.34.207.14) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 20 Dec 2006 08:44:39 -0800 Received: from unknown (HELO LA-EXCLUST01.corp.valueclick.com) ([192.168.250.7]) by smtp2.corp.valueclick.com with ESMTP; 20 Dec 2006 08:44:18 -0800 X-IronPort-AV: i="4.12,193,1165219200"; d="scan'208"; a="87095579:sNHT32115125" X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: Re: Rebuilding index on a regular basis Date: Wed, 20 Dec 2006 08:44:16 -0800 Message-ID: In-Reply-To: <359a92830612200758h36982da9u749b03bc370ec759@mail.gmail.com> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Rebuilding index on a regular basis Thread-Index: AcckT82ydtqvAw00TIOLeMawyPagRAABVIgw From: "Scott Sellman" To: X-Virus-Checked: Checked by ClamAV on apache.org Note: I have changed the title of this thread to match its content I am currently facing a similar issue. I am dealing with a large index that is constantly used and needs to be updated on a daily basis. For fear of corruption I would rather rebuild the index each time, performing tests against it before using it. However the problem I am having is switching in the old index without causing service interruption. As long as queries are being made against the index I am running into locking issues with the index files, preventing me from putting the new index in place. Any suggestions? Thanks,=20 Scott=20 -----Original Message----- From: Erick Erickson [mailto:erickerickson@gmail.com]=20 Sent: Wednesday, December 20, 2006 7:59 AM To: java-user@lucene.apache.org Subject: Re: MultiFieldQueryParser doesn't properly filter out documents when the query string specifies to exclude certain terms My first question is how many documents would you be deleting on a pass for option 2? If it's 10 documents out of 10,000, I'd consider just deleting them and re-adding (see IndexModifier). Personally, if posible, I prefer your first option, building a completely new index and switching between them. This is especially useful if something catastrophic happens to the index as you build it and it winds up being unusable (power failures *do* happen). You can keep using your old index and be happy. Another question is how quickly the index builds and how soon do your users require that they get up-to-date data? And remember that no matter what, you must re-open your searcher to see the updates. I'd be really reluctant to remove all the items and re-build the index for several reasons... 1> You wouldn't get the new data being added until you closed/reopened your searcher. 2> The documents you deleted wouldn't be "gone" until you closed/reopened your searcher. 3> In the interim, your users wouldn't have access to much of anything.... Best Erick On 12/20/06, Adam Fleming wrote: > > > Hello Gentlemen (+Ladies?), > > I'm integrating Lucene into a Spring web-app, and have found a plethora of > great web + print resources to make the integration quick and seamless. One > thing that I have been hard-pressed to find is a good solution for > rebuilding the index on a regular basis. > > I'm curious if a you know of a best-practice (or have found something > personally that works) for rebuilding a Lucene Index w/o service > interruptions. The assumptions are a spring IOC container w/ an > IndexFactory bean. I have the project configured to work with both > FSDirectory and RamDirectory implementations. If you don't know Spring, > you are free to ignore the details - I'll adapt your comments to my code :) > > So far I tried rebuilding the index on a regular schedule, but foolishly > only added duplicate documents to an existing index. > > Things I have considered are > - Using two index directories, and rebuilding one while the other is > in use + switching when the rebuilt index is ready. This would > cause the app to alternate between two indexes. > - Using a single index, and iterating over the index entirely, > deleting documents 1 by 1 and re-adding them with fresh data > - Using a single index, and deleting ALL the documents at once > and then adding them all back as quickly as possible. > > > All of my proposed ideas seem fly in the face of Lucene's sipmlicity, and > I will be so thankful to be pointed in the right direction. > > > Happy Holidays and a big Thank You to the active list users, > > > Adam Fleming > > _________________________________________________________________ > Try amazing new 3D maps > http://maps.live.com/?wip=3D51 > --------------------------------------------------------------------- > To unsubscribe, e-mail: java-user-unsubscribe@lucene.apache.org > For additional commands, e-mail: java-user-help@lucene.apache.org > > --------------------------------------------------------------------- To unsubscribe, e-mail: java-user-unsubscribe@lucene.apache.org For additional commands, e-mail: java-user-help@lucene.apache.org