Return-Path: X-Original-To: apmail-lucene-dev-archive@www.apache.org Delivered-To: apmail-lucene-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4BA4F9096 for ; Tue, 12 Jun 2012 10:51:48 +0000 (UTC) Received: (qmail 57838 invoked by uid 500); 12 Jun 2012 10:51:45 -0000 Delivered-To: apmail-lucene-dev-archive@lucene.apache.org Received: (qmail 57418 invoked by uid 500); 12 Jun 2012 10:51:45 -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 57149 invoked by uid 99); 12 Jun 2012 10:51:44 -0000 Received: from issues-vm.apache.org (HELO issues-vm) (140.211.11.160) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 12 Jun 2012 10:51:44 +0000 Received: from isssues-vm.apache.org (localhost [127.0.0.1]) by issues-vm (Postfix) with ESMTP id 0B53E141663 for ; Tue, 12 Jun 2012 10:51:44 +0000 (UTC) Date: Tue, 12 Jun 2012 10:51:44 +0000 (UTC) From: "Adrien Grand (JIRA)" To: dev@lucene.apache.org Message-ID: <1266055936.6927.1339498304051.JavaMail.jiratomcat@issues-vm> Subject: [jira] [Resolved] (LUCENE-2357) Reduce transient RAM usage while merging by using packed ints array for docID re-mapping 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-2357?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Adrien Grand resolved LUCENE-2357. ---------------------------------- Resolution: Fixed Assignee: Adrien Grand (was: Michael McCandless) > Reduce transient RAM usage while merging by using packed ints array for docID re-mapping > ---------------------------------------------------------------------------------------- > > Key: LUCENE-2357 > URL: https://issues.apache.org/jira/browse/LUCENE-2357 > Project: Lucene - Java > Issue Type: Improvement > Components: core/index > Reporter: Michael McCandless > Assignee: Adrien Grand > Priority: Minor > Fix For: 4.0, 5.0 > > Attachments: LUCENE-2357.patch, LUCENE-2357.patch, LUCENE-2357.patch, LUCENE-2357.patch, LUCENE-2357.patch > > > We allocate this int[] to remap docIDs due to compaction of deleted ones. > This uses alot of RAM for large segment merges, and can fail to allocate due to fragmentation on 32 bit JREs. > Now that we have packed ints, a simple fix would be to use a packed int array... and maybe instead of storing abs docID in the mapping, we could store the number of del docs seen so far (so the remap would do a lookup then a subtract). This may add some CPU cost to merging but should bring down transient RAM usage quite a bit. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org For additional commands, e-mail: dev-help@lucene.apache.org