A .NET specific exception which is thrown when there is not enough memory to continue the execution of a program.
19
votes
2answers
803 views
How to merge common parts of WSDL and XSD from different services?
I have to interact with a set of web-services that each come with their own WSDL and XSD. The XSD are sometimes merged in a single file sometimes spread along multiple files (20-30). However, from ...
14
votes
5answers
1k views
Linux optimistic malloc: will new always throw when out of memory?
I have been reading about out of memory conditions on Linux, and the following paragraph from the man pages got me thinking:
By default, Linux follows an optimistic memory allocation strategy. ...
13
votes
2answers
545 views
Parallel.ForEach can cause a “Out Of Memory” exception if working with a enumerable with a large object
I am trying to migrate a database where images where stored in the database to a record in the database pointing at a file on the hard drive. I was trying to use Parallel.ForEach to speed up the ...
13
votes
0answers
838 views
HttpURLConnection buffering rather than streaming, despite setting chunked streaming mode? [closed]
I am using HttpURLConnection to write files, some of which are quite large, to a server.
final HttpURLConnection conn = (HttpURLConnection) url.openConnection();
A while back I had issues writing ...
13
votes
10answers
6k views
Is it possible to catch out of memory exception in java?
I'm developing a program that would require huge amount of memory, and I want to catch when out-of-memory exception happens. I had heard this is not possible to do, but curious if there is any ...
12
votes
9answers
5k views
OutOfMemory exception when loading bitmap from external storage
In my application I load a couple of images from JPEG and PNG files. When I place all those files into assets directory and load it in this way, everything is ok:
InputStream stream = ...
12
votes
5answers
1k views
How to simulate OutOfMemory exception
I need to refactor my project in order to make it immune to OutOfMemory exception.
There are huge collections used in my project and by changing one parameter I can make my program to be more ...
11
votes
16answers
2k views
Can the C++ `new` operator ever throw an exception in real life?
Can the new operator throw an exception in real life?
And if so, do I have any options for handling such an exception apart from killing my application?
Update:
Do any real-world, new-heavy ...
10
votes
9answers
1k views
Android app out of memory issues - tried everything and still at a loss
I spent 4 full days trying everything I can to figure out the memory leak in an app I'm developing, but things stopped making sense a long time ago.
The app I'm developing is of social nature, so ...
10
votes
4answers
382 views
What's the easiest way to get an OutOfMemoryException in C#?
Just curious as to how I can get this error the easiest way.
Once I was trying to create a file navigator and I was creating Image thumbnails; that turned out awful.
10
votes
9answers
697 views
How to list a 2 million files directory in java without having a out of memory exception
I have to deal with a directory of about 2 million xml's to be processed.
I've already solved the processing distributing the work between machines and threads using queues and everything goes ...
9
votes
8answers
1k views
XDocument + IEnumerable is causing out of memory exception in System.Xml.Linq.dll
Basically I have a program which, when it starts loads a list of files (as FileInfo) and for each file in the list it loads a XML document (as XDocument).
The program then reads data out of it into ...
9
votes
10answers
5k views
Force garbage collection of arrays, C#
I have a problem where a couple 3 dimensional arrays allocate a huge amount of memory and the program sometimes needs to replace them with bigger/smaller ones and throws an OutOfMemoryException.
...
9
votes
8answers
8k views
StringBuilder for string concatenation throws OutOfMemoryException
We mostly tend to following the above best practice.
Have a look at String vs StringBuilder
But StringBuilder could throw OutOfMemoryException even when there is sufficient memory available. It ...
8
votes
2answers
209 views
Out of memory exception for a matrix
I have the "'System.OutOfMemoryException" exception for this simple code (a 10 000 * 10 000 matrix) multiplied by itself:
#time
#r "Microsoft.Office.Interop.Excel"
#r "FSharp.PowerPack.dll"
open ...
8
votes
3answers
153 views
Is there a way to compact memory in android to lower the high water mark?
Please note I do NOT have a memory leak. My question is about a subtler issue.
I recently wrote an android app which does image processing. The image is loaded as a Bitmap, then copied out in ...
8
votes
7answers
1k views
OutOfMemory error while joining large images
I am joining two images using the code below but it throws an OutOfMemory error my images are around 1MB each.
private Bitmap overlayMark(String first, String second)
{
Bitmap bmp1, bmp2;
...
8
votes
5answers
328 views
Would simple class instantiation ever fail in C#?
I saw some code written by another developer that looks something like this:
var stringBuilder = new StringBuilder();
if(stringBuilder == null)
{
// Log memory allocation error
// ...
...
8
votes
4answers
1k views
OutOfMemoryError calling XmlSerializer.Deserialize() - not related to XML size!
This is a really crazy bug. The following is throwing an OutOfMemoryException, for XML snippits that are very short and simple (e.g., <ABC def='123'/>):
public static T ...
7
votes
3answers
974 views
Is it possible to chop a bitmap to small pieces without loading the entire thing into memory?
I'm working on an image processing application for Android that recognizes music notation from pictures taken of music sheets.
I tried to load the entire image into a Bitmap using the ...
7
votes
2answers
3k views
Android custom view Bitmap memory leak
I've got a custom view in which I need to draw two bitmaps, one is a background, representing the image of a map and one is a pin which will be drawn on top/left position in canvas.
The both images ...
7
votes
2answers
4k views
java.lang.OutOfMemoryError: bitmap size exceeds VM budget
So I've got a lazy image loader for my ListView. I also use this tutorial for better memory management and have SoftReference Bitmap images stored in my ArrayList.
My ListView works loads 8 images ...
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
149 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
455 views
OutOfMemory on both device and emulator
I am getting OutOfMemory Exception while running my project on both emulator and device(acer tablet and samsung galaxy) showing
the application launcher process com.android.launcher has stopped ...
6
votes
5answers
578 views
split huge 40000 page pdf into single pages, itextsharp, outofmemoryexception
I am getting huge PDF files with lots of data. The current PDF is 350 MB and has about 40000 pages. It would of course have been nice to get smaller PDFs, but this is what I have to work with now :-(
...
6
votes
3answers
173 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
2answers
209 views
MATLAB not throwing OutOfMemoryExceptions or Maximum variable size errors
In a previous version of MATLAB (7.6), I used to get OutOfMemoryErrors that I thought were kind of annoying. But since I upgraded to 7.11, for some reason it's not throwing the errors anymore.
...
6
votes
8answers
405 views
.NET OutOfMemoryException
new to c#/.NET
why does this:
class OutOfMemoryTest02
{
static void Main()
{
string value = new string('a', int.MaxValue);
}
}
throw the exception; but this wont:
class ...
6
votes
2answers
6k views
Loading a resource to a mutable bitmap
I am loading a bitmap from a resource like so:
Bitmap mBackground = BitmapFactory.decodeResource(res,R.drawable.image);
What I want to do is make some changes to the bitmap before It gets drawn to ...
6
votes
3answers
2k views
win32 window in WPF
Recently our application encountered a strange problem.
The application has a win32 window in the WPF window,
when resize the WPF window, the problem occurred.
StackTrace:
Exception object: ...
6
votes
4answers
4k views
Maven throws “java.lang.OutOfMemoryError”
I'm compiling an open source project with "mvn install" but ended up with java.lang.OutOfMemoryError: Java heap space. I tried to execute java -Xmx256m but the output was java synopsis which indicated ...
6
votes
4answers
777 views
OutOfMemory, but no gcroots for many objects
We are developing a rather large Windows Forms application. In several customers' computers it often crashes with OutOfMemory exception. After obtaining full memory dump of the application moments ...
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 ...
6
votes
4answers
719 views
How to make a .NET process run out of memory without exhausting all system memory
The problem is simple I have a process, that does ETL on some xml files. We started getting really large xml files and I started getting OutOfMemoryExceptions.
Fixing the process is relatively ...
5
votes
3answers
105 views
Avoiding Out Of Memory Exception in applying filters to Images (Android)
I am trying to apply some filters on a Image. To apply the filter, i have to first create an array:
int[] arr = new int[image.width*image.height];// to store each pixel
and then i can pass it to ...
5
votes
3answers
92 views
Scope & memory issues in Scala
I have a very large List of numbers, which undergo lots of math manipulation. I only care about the final result. To simulate this behavior, see my example code below:
object X {
def ...
5
votes
3answers
168 views
Design pattern for try/catch block for OutOfMemoryException in .NET
I have an application that works with large amounts of data, and I'm thinking that, may be, sometimes the OutOfMemoryException will be thrown (For half a year, I got no single exception, but I'm just ...
5
votes
5answers
268 views
What's the most efficient way to manage large amounts of data (height data) and replace this huge array?
I need to be able to look up this data quickly and need access to all of this data. Unfortunately, I also need to conserve memory (several of this will cause OutofMemoryExceptions)
short[,,] data = ...
5
votes
2answers
6k views
java.lang.OutOfMemoryError: Java heap space in Maven
When I run maven test, java.lang.OutOfMemoryError happens. I google it for solutions and have tried to export MAVEN_OPTS=-Xmx1024m, but it did not work.
Anyone know other solutions for this problem ...
5
votes
1answer
476 views
Why does StreamReader.ReadLine throw OutOfMemoryException?
Can anyone tell me why the last line here throws OOM exception?
byte[] buffer = new byte[1];
buffer[0] = 239;
MemoryStream ms = new MemoryStream(buffer);
StreamReader ...
5
votes
2answers
269 views
OutOfMemory Exception when drawing cube
i have a class that draws and rotates a cube. every time i rotate the cube i reload the buffer with the new values for the cube.
public void LoadBuffer(GraphicsDevice graphicsDevice)
{
...
5
votes
6answers
219 views
How to detect if loading an image will throw an OutOfMemory exception in .NET?
I have an application written using .NET 3.5 SP1 that downloads images from an external site and displays them to end users. On rare ocassions, my users are experiencing OutOfMemory errors because ...
5
votes
4answers
301 views
x86 .net application with system.OutOfMemoryException
Guys
I got OutOfMemoryException after the app running for 1 day, the app totally use 1.5G memory , all consumed by managed heap, gen 2 used 200mb , and LOB used 1.3mb, however the weired thing is, ...
5
votes
4answers
767 views
How to maxmise the largest contiguous block of memory in the Large Object Heap
The situation is that I am making a WCF call to a remote server which is returns an XML document as a string.
Most of the time this return value is a few K, sometimes a few dozen K, very ...
5
votes
9answers
17k views
c# 'System.OutOfMemoryException' was thrown when there is still plenty of memory free
This is my code:
int size = 100000000;
double sizeInMegabytes = (size * 8.0) / 1024.0 / 1024.0; //762 mb
double[] randomNumbers = new double[size];
Exception:
Exception of type ...
5
votes
7answers
4k views
How do I use large bitmaps in .NET?
I'm trying to write a light-weight image viewing application. However, there are system memory limitations with .NET.
When trying to load large bitmaps (9000 x 9000 px or larger, 24-bit), I get a ...
4
votes
3answers
184 views
C# : Out of Memory exception
to my very big supprise my application today threw an Out of Memory Exception. For me this was always almost impossible since I have 4GB RAM and a lot of virtual memory too. The error happend when I ...
4
votes
1answer
77 views
How can I stop VS from giving me several types of “System.OutofmemoryException” errors?
So, I've got Visual Studio 2010 and am working on a Silverlight 4 project. Recently, my dear VS started to, randomly by the way, not build due do an out of memory error.
I've had several types of ...
4
votes
3answers
733 views
Android Bitmap Limit - Preventing java.lang.OutOfMemory
I'm currently struggling with an odd behavior of the Android platform -- the Bitmap / Java heap memory limit. Depending on the device, Android limits the app developer to 16, 24, or 32 MiB of Java ...