Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
519 views

Heap fragmentation when using byte arrays

I have a C# 4.0 application (single producer/single consumer) which transfers huge amount of data in chunks. Although there's no new memory allocation I run out of memory after a while. I profiled ...
9
votes
3answers
187 views

Large Object Heap and String Objects coming from a queue

I have a windows console app that is supposed to run without restarts for days and months. The app retrieves "work" from an MSMQ and process it. There are 30 threads that process a work chunk ...
7
votes
3answers
205 views

RegEx, StringBuilder and Large Object Heap Fragmentation

How can I run lots of RegExes (to find matches) in big strings without causing LOH fragmentation? It's .NET Framework 4.0 so I'm using StringBuilder so it's not in the LOH however as soon as I need ...
7
votes
3answers
168 views

Large String in Large Object Heap causes issues - but in any case it has to end up as a String

I am following up from this question here The problem I have is that I have some large objects coming from an MSMQ mainly Strings. I have narrowed down my memory problems to these objects being ...
7
votes
3answers
175 views

Tool for analyzing large Java heap dumps

I have a HotSpot JVM heap dump that I would like to analyze. The VM ran with -Xmx31g, and the heap dump file is 48 GB large. I won't even try jhat, as it requires about five times the heap memory ...
7
votes
6answers
1k views

Should I call GC.Collect immediately after using the large object heap to prevent fragmentation

My application does a good deal of binary serialization and compression of large objects. Uncompressed the serialized dataset is about 14 MB. Compressed it is arround 1.5 MB. I find that whenever I ...
6
votes
1answer
150 views

Processing big strings, Is this Large Object Heap Fragmentation?

I have a .NET 3.5 Application A function is running a million times It's doing search & replace & regex operations in 1MB+ strings (different sized strings) When I profile the application ...
6
votes
3answers
174 views

caching search results in session vs keeping large object heap clean

Ok so I've been working on an ASP.NET project for a while and it seems I've made some bad design choices that are coming back to haunt me as the project keeps on getting bigger and bigger in terms of ...
6
votes
3answers
2k views

Allocating more than 1,000 MB of memory in 32-bit .NET process

I am wondering why I'm not able to allocate more that 1,000 MB of memory in my 32-bit .NET process. The following mini application throws an OutOfMemoryException after having allocated 1,000 MB. Why ...
5
votes
4answers
1k views

GC.Collect on only generation 2 & large object heap

In my application there is a specific time when a number of large objects are all released at once. At that time I would like to do a garbage collection on specifically the large object heap (LOH). ...
4
votes
3answers
239 views

C#: Will GC collect if it needs memory, or will it give out of memory exception?

I have a loop in my code that generates many byte[] arrays (around 1 to 2 MB each), fills them with data, and then discard the reference. So, even though the reference is only held for a short time, I ...
4
votes
4answers
338 views

Large Object Heap fragmentation: CLR has any solution to it?

If you application is such that it has to do lot of allocation/de-allocation of large size objects (>85000 Bytes), its eventually will cause memory fragmentation and you application will throw an Out ...
4
votes
3answers
1k views

Visual C#, Large Arrays, and LOH Fragmentation. What is the accepted convention?

I have an other active question HERE regarding some hopeless memory issues that possibly involve LOH Fragmentation among possibly other unknowns. What my question now is, what is the accepted way of ...
3
votes
2answers
310 views

Large Object Heap friendly IDictionary

We have an application that holds large numbers of objects in several Dictionarys, some of which grow continually during the lifetime of the app (trading application with lots of instruments and ...
3
votes
1answer
292 views

Garbage collection of LOH, WeakReferences, large objects

In my application I need to load large files (can be about ~ 250 MB) into memory, I'm doing it in a lazy way - when user ask to see a file - I'm loading it. After that, every time user tries to ...
2
votes
5answers
75 views

Why Large Object Heap and why do we care?

I have read about Generations and Large object heap. But I still fail to understand what is the significance (or benefit) of having Large object heap? What could have went wrong (in terms of ...
2
votes
0answers
58 views

An Attempt to solve LOH Fragmentation Problems (StringBuilder + RegEx) [closed]

Added this as an answer to my previous question: RegEx, StringBuilder and Large Object Heap Fragmentation
2
votes
3answers
290 views

Pre-allocate some memory in Large Object Heap memory

i am working on a C# application and this application is facing memory crunch, because many objects are getting memory allocation in the Large object Heap. My C# application has to work on many ...
2
votes
2answers
117 views

Reading large strings from database without fragmenting large object heap

I have data database containing some rather large strings, each of which holds a serialized hierarchical data collection (data is stored as strings rather than as a binary stream to allow interaction ...
1
vote
2answers
45 views

Will my object be placed in the Large Object Heap?

When the CLR places an object on the Large Object Heap, is it an "all or nothing" deal? Are class/struct members "split up" and placed in different heaps? class OneBigObject { byte[] bigObject; ...
1
vote
2answers
82 views

StringBuilder growing over 85k and moving to LOH? [closed]

Possible Duplicate: How does StringBuilder's capacity change? Let's say a StringBuilder is allocated and then it grows to over 85k, will it get moved over to the Large Object Heap?
1
vote
1answer
100 views

Visualizing Large Object Heap Fragmentation

Is there any tool out there to visualize large object heap? Currently I'm using ANTS Memory Profiler, it tells that LOH is fragmented but you can't actually see the fragmentation (I'm hoping to see a ...
1
vote
1answer
53 views

What advantage is there to only collecting large-object-heap objects with Generation 2?

I understand that generational garbage collection improves performance, since Any object will have to be moved at most twice in non-Gen2 collections, and Gen2 collections are rare. If the system is ...
1
vote
0answers
72 views

LOH profiling says GC root objects (System.Object) are source of memory leak

I have a HttpHandler which is called frequently. It uses Entity Framework to accomplish its task. There's slow increasing in used memory by the w3p.exe of this web application (it has a separate ...
1
vote
1answer
109 views

LOH internals wanted

I know, it is an implementation detail, and some people think it is forbidden to be interested into them. But I nevertheless want to find references for, and confirmation of, the following: The ...
1
vote
1answer
145 views

Can big strings cause large object heap fragmentation?

Can big strings (85kb+) cause large object heap fragmentation like large arrays?
1
vote
2answers
175 views

Why might the Large Object Heap grow rather than throw an exception?

In a previous question I asked possible programatic ways of maximising the largest block allocatable on the LOH. I'm still seeing the problems, but now I'm trying to get my head around why the LOH ...
1
vote
5answers
321 views

How can I know the ACTUAL maximum number of elements a .net array of a given type can be allocated?

I know that all arrays in .net are limited to 2 GB, under this premise, I try not to allocate more that n = ((2^31) - 1) / 8 doubles in an array. Nevertheless, that number of elements still doesn't ...
0
votes
1answer
29 views

How can I find the size of the current LOH programmatically?

Is there anyway way to get the size of Large Object Heap programmatically? I can see it a memory profiler but I'm trying to find the total size of LOH for my AppDomain.
0
votes
0answers
26 views

Unable to open the heap dump

I have a heap dump of approx size 350mb. I am using a 32bit windowsXP machine. I have downloaded the IBM Heap analyzer tool ie.,ha42t.jar file. I opened the heap dump by specifying the max size ...
0
votes
2answers
70 views

Why is large object heap mostly empty?

Why does .NET memory management create such a large object heap? Most of it seems to be empty. Is this something to be concerned about? Does the below data mean that in reality I only 179 MB worth ...
0
votes
1answer
85 views

.net application causing memory fragmentation

I understand that only way a .NET application ( that does not use any unamanged code) can cause memory fragmentation is by large object heap. Are there any ways of detecting if your application is ...
0
votes
2answers
264 views

How to detect if the large object heap is causing the out of memory exception

I'm having System.OutOfMemory exceptions in my .NET Windows Service. I'm not sure what's causing it. I suspect fragmentation in the large object heap but i'm not sure. How can I verify my hypothesis? ...
0
votes
1answer
301 views

Difference between 3rd gen objects and large object heap

What is the difference between large object heap and GC 3rd generation objects?
0
votes
2answers
278 views

Determine limit for large object heap programmatically

Since it is recommended to use the IDisposal pattern for large objects, I am wondering, why there seems to be no reliable way to determine the limit, up from which an object is to be considered ...
0
votes
3answers
116 views

How do I know an array of structures was allocated in the Large Object Heap (LOH) in .NET?

After some experimenation using CLR Profiler, I found that: Node[,] n = new Node[100,23]; //'84,028 bytes, is not placed in LOH Node[,] n = new Node[100,24]; //'86,428 bytes, is public struct ...
0
votes
1answer
112 views

Why is Process.PagedMemorySize64 > 0 when there is no paging memory on the machine?

I am runing .net code on a machine with the page file size set to zero. My application logs System.Diagnostics.Process.PagedMemorySize64 and is showing a value > 0. How can this be? The ...