Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a windows service that is doing some maintenance work. Recently we added a job that attempts to precalculate some search result by using Lucene and since then it started throwing OutOfMemory Exceptions.

Some details which I got from WinDbg and SOS:

0:034> !analyzeoom
Managed OOM occured after GC #176014 (Requested to allocate 2621440 bytes)
Reason: Low on memory during GC
Detail: SOH: Failed to reserve memory (16777216 bytes)

!dumpheap -stat command result (the last ones)

65fe4944    81900     34614564 System.Byte[]
65fe2938    76014     35904328 System.Int32[]
65f96064       74     39988372 System.Int64[]
65fdf9ac  3208118    150302932 System.String
00265090      363    247694656      Free
Total 9035539 objects

So there is free memory but it gets fragmented and all portions are less that 16MB (default allocated segment) Array of bytes, ints and int64 are hold by Lucene Cache. Cache is activated because of query that uses sort. Lucene Cache impimentation is based on WeakReferenceHashMap and thus should be cleaned by garbage collector in case of memory starvation.

Heapstat command

0:034> !heapstat
Heap             Gen0         Gen1         Gen2          LOH
Heap0         1643476      2689484    526084512    196389976

Free space:                                                 Percentage
Heap0              12           12    170262384     77432248SOH: 32% LOH: 39%

The exception dump from log file looks like:

Quartz.Core.ErrorLogger - Job (DEFAULT.precalculate-similar-index threw an exception.
Quartz.SchedulerException: Job threw an unhandled exception. ---> System.OutOfMemoryException: Exception of type 'System.OutOfMemoryException' was thrown.
   at Lucene.Net.Search.FieldCacheImpl.LongCache.CreateValue(IndexReader reader, Entry entryKey) in C:\Dev\Lucene.Net_2_9_2\src\Lucene.Net\Search\FieldCacheImpl.cs:line 685
   at Lucene.Net.Search.FieldCacheImpl.Cache.Get(IndexReader reader, Entry key) in C:\Dev\Lucene.Net_2_9_2\src\Lucene.Net\Search\FieldCacheImpl.cs:line 240
   at Lucene.Net.Search.FieldCacheImpl.GetLongs(IndexReader reader, String field, LongParser parser) in C:\Dev\Lucene.Net_2_9_2\src\Lucene.Net\Search\FieldCacheImpl.cs:line 639
   at Lucene.Net.Search.FieldCacheImpl.LongCache.CreateValue(IndexReader reader, Entry entryKey) in C:\Dev\Lucene.Net_2_9_2\src\Lucene.Net\Search\FieldCacheImpl.cs:line 667
   at Lucene.Net.Search.FieldCacheImpl.Cache.Get(IndexReader reader, Entry key) in C:\Dev\Lucene.Net_2_9_2\src\Lucene.Net\Search\FieldCacheImpl.cs:line 240
   at Lucene.Net.Search.FieldCacheImpl.GetLongs(IndexReader reader, String field, LongParser parser) in C:\Dev\Lucene.Net_2_9_2\src\Lucene.Net\Search\FieldCacheImpl.cs:line 639
   at Lucene.Net.Search.FieldComparator.LongComparator.SetNextReader(IndexReader reader, Int32 docBase) in C:\Dev\Lucene.Net_2_9_2\src\Lucene.Net\Search\FieldComparator.cs:line 481

The only idea I got till know is that exception is caused by memory fragmentation. Unfortunately there is no answer to the question why memory is not compressed. We don't pin any objects and it seems that lucene doesn't either, although !gcroot command returns for some objets the following result:

DOMAIN(0025D260):HANDLE(Pinned):1f13ec:Root:  02393250(System.Object[]) - from !gcroot
ESP:16f2e4: sizeof(02393250) =    123436600 (   0x75b7e38) bytes (System.Object[]) - size of the pinned arrays of objects

Any help would be greatly appreciated.

EDIT: I have to add:
System: Windows Server 2008R2 32bit
Total commited bytes: ~950 MB
Total reserved bytes: ~ 1 666 MB (Numbers are taken from Performance monitor)

I have to add that index searcher and therefore associated index reader is closed regularly after short batch is done after that new batch is scheduled and works continues. OOM does appear after a couple hours of running. Also the exception is caught because and service continues to run.

share|improve this question
2  
The Lucene cache (the FieldCache) uses weak references based on open segment readers. The cache entries will not be garbage collected until their respective segment readers are closed. – Simon Svensson Jan 22 '11 at 13:17
@Simon Svensson - Reader is closed after each batch which is quite short (4-5 hundreds of searches). – Jenea Jan 22 '11 at 15:20

1 Answer

up vote 0 down vote accepted

So there wasn't a leak but because of high CPU and memory load GC threw catcheable OOM exceptions. So from one side process continued working and from the other side index wasn't update.

At leas I managed to somehow lower the pressure on memory and know system is working ok. As Simon Svensson pointed out GC is not collecting if readers are still open so I decided to check how code is dealing with readers. It turned out that there were a relatively hight number of unnecessary places where index was open so by opening index in one place and sending it as a parameter to all methods, that required it, made the problem disappear.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.