Return-Path: Delivered-To: apmail-lucene-java-dev-archive@www.apache.org Received: (qmail 65030 invoked from network); 25 Feb 2008 22:27:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 25 Feb 2008 22:27:42 -0000 Received: (qmail 98297 invoked by uid 500); 25 Feb 2008 22:27:34 -0000 Delivered-To: apmail-lucene-java-dev-archive@lucene.apache.org Received: (qmail 98251 invoked by uid 500); 25 Feb 2008 22:27:34 -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 98240 invoked by uid 99); 25 Feb 2008 22:27:34 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 25 Feb 2008 14:27:34 -0800 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.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 25 Feb 2008 22:27:09 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 1A8CC234C010 for ; Mon, 25 Feb 2008 14:26:51 -0800 (PST) Message-ID: <1217905257.1203978411107.JavaMail.jira@brutus> Date: Mon, 25 Feb 2008 14:26:51 -0800 (PST) From: "Michael McCandless (JIRA)" To: java-dev@lucene.apache.org Subject: [jira] Commented: (LUCENE-1191) If IndexWriter hits OutOfMemoryError it should not commit In-Reply-To: <1670694558.1203974811053.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/LUCENE-1191?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12572277#action_12572277 ] Michael McCandless commented on LUCENE-1191: -------------------------------------------- OK. LUCENE-1171 fixed certain OOM cases after 2.3.0, and was backported to 2.3.1, and it may have fixed this although I didn't think there were cases that would lead to corruption of the posting lists. If you also see this happen on 2.3.1 please report back! > If IndexWriter hits OutOfMemoryError it should not commit > --------------------------------------------------------- > > Key: LUCENE-1191 > URL: https://issues.apache.org/jira/browse/LUCENE-1191 > Project: Lucene - Java > Issue Type: Improvement > Components: Index > Affects Versions: 1.9, 2.0.0, 2.1, 2.2, 2.3, 2.3.1, 2.4 > Reporter: Michael McCandless > Assignee: Michael McCandless > Priority: Minor > Fix For: 2.4 > > Attachments: LUCENE-1191.patch > > > While progress has been made making IndexWriter robust to OOME, I > think there is still a real risk that an OOME at a bad time could put > IndexWriter into a bad state such that if close() is called and > somehow it succeeds without hitting another OOME, it risks > introducing messing up the index. > I'd like to detect if OOME has been hit in any of the methods that > alter IW's state, and if so, do not commit changes to the index. If > close is called after hitting OOME, I think writer should instead > abort. > Attached patch just adds try/catch clauses to catch OOME, note that > it was hit, and re-throw it. Then, sync() refuses to commit a new > segments_N if OOME was hit, and close instead calls abort when OOME > was hit. All tests pass. I plan to commit in a day or two. -- 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