[ 
https://issues.apache.org/jira/browse/LUCENE-1091?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12552764
 ] 

Mirza Hadzic commented on LUCENE-1091:
--------------------------------------

I am inclined to think this is JVM 6 issue. When running TestOOM with JVM 
parameters -Xms200m -Xmx200m , it easily increases virtual memory usage past 
500MB ! Obviously, JVM have no idea how much memory it actually uses, and log 
from TestOOM suggest this is the case. Running System.gc() every 100 added 
documents changes nothing, just like I expected. 

Attached is screenshot of my task list on XP sorted by VM usage when running 
TestOOM. Second java.exe is Netbeans (CPU: 0%), ignore that. TestOOM is 
java.exe using 48-50% all the time (I have dual-core, so it uses one full CPU, 
which is true/OK).

> Big IndexWriter memory leak: when Field.Index.TOKENIZED
> -------------------------------------------------------
>
>                 Key: LUCENE-1091
>                 URL: https://issues.apache.org/jira/browse/LUCENE-1091
>             Project: Lucene - Java
>          Issue Type: Bug
>          Components: Index
>    Affects Versions: 2.2
>         Environment: Ubuntu Linux 7.10, 32-bit
> Java 1.6.0 buld 1.6.0_03-b05 (default in Ubuntu 7.10)
> 1GB RAM
>            Reporter: Mirza Hadzic
>         Attachments: lucene.txt, TestOOM.java
>
>
> This little program eats incrementally 2MB of virtual RAM per each 1000 
> documents indexed, only when Field.Index.TOKENIZED used :
> public Document getDoc() {
>    Document document = new Document();
>    document.add(new Field("foo", "foo bar", Field.Store.NO, 
> Field.Index.TOKENIZED));
>    return document;
> }
> public Document run() {
>    IndexWriter writer = new IndexWriter(new File(jIndexFileName), new 
> StandardAnalyzer(), true);                                      
>    for (int i = 0; i < 1000000; i++) {
>       writer.addDocument(getDoc());
>    }
> }

-- 
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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to