outofmemoryexception

High rate data stream and memory deficiency

I have a program that accumulates traffic from network interface in 800 Mb/s. This program is developed by Delphi, also in 32bit platform(Delphi does not support 64bit architecture). I'm writing received date on the memory(RAM) and after a while (unknown and depends on received data), write a block of received data (unknown size and dep...

Can I rearrange dll images in my .NET app's address space to make more contiguous free space available?

This image shows fragmentation in my app's address space. Is there any way to force the (third-party) dll images (purple) together to eliminate (or mitigate) the fragmentation? This app will run on 32-bit XP; obviously when we eventually move to 64-bit Windows 7, this problem will go away. Thanks! ...

How to deal with big strings and limited memory

I have a file from which I read data. All the text from this file is stored in a String variable (a very big variable). Then in another part of my app I want to walk through this string and extract useful information, step-by-step (parsing the string). In the meanwhile my memory gets full and an OutOfMemory exception keeps me from furth...

Java Outofmemory heap space error: How do I make a deque from a vector?

Hi, I'm new to Java and really need your help. I am presently using a queue, a receiver thread puts data into this queue and the parser reads out of this. But the problem is the receiver may receive at incredible peak speed, eg. 3000/sec, while the parser only parses at 100/sec. EDIT:I have checked, the queue first stays at 100 o...

SQLite java memory usage increases until an outofmemory exception

I use SQLite in a java program. While the java program runs, several queries are sent to the database as well as temporary tables are created in memory and then deleted (using DROP). The problem is that while the number of various operations in the database increases, the memory usage from the java program also increases. As a result, ...

Mono C# Getting data from socket gets OutOfMemory

I have this simple code running on my windows server just fine, but when I run it in mono after a couple days I start getting only OutOfMemory exceptions. public static byte [] TryReceive (Socket sock, out int nLength) { nLength = 0; try { int size = sizeof(int); byte [] data; int recv = 0; int offset = 0; d...

Getting an 'out of memory' exception in this relatively simple program.

Here's my Picture.cs class: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; using System.Drawing; namespace SharpLibrary_MediaManager { public class Picture:BaseFile { public int Height { get; set; } public int Width { get; set; } public Image Thumbn...

OutOfMemory when reading big amounts of data using hibernate.

I need to export big amount of data from database. Here is classes that represents my data: public class Product{ ... @OneToMany @JoinColumn(name = "product_id") @Cascade({SAVE_UPDATE, DELETE_ORPHAN}) List<ProductHtmlSource> htmlSources = new ArrayList<ProductHtmlSource>(); ... } ProductHtmlSource - contains big s...

Code Review: OutOfMemoryException problem

I keep getting a 'System.OutOfMemoryException' thrown at the code below. I can't figure out where the memory leak is and it would be a great help if someone could explain what I am doing wrong. Thanks! lock ((_tabs)) { System.IO.StreamReader sr = null; System.IO.MemoryStream ms = null; try { Type[] t = { typeof(t...

Hibernate: OutOfMemory when deleting with all-delete-orphan cascade option.

I have following mapping for my Category objects: @Entity public class Category extends CrawlableEntity implements Identifiable { @Id @GeneratedValue(strategy = GenerationType.AUTO) @Expose private Long id; @ManyToOne(fetch = FetchType.LAZY) private Category parent; @OneToMany(mappedBy = "parent", casc...

java OutOfMemoryError

I am running the following command on unix box. java -Xms3800m -Xmx3800m org.apache.xalan.xslt.Process -out Cust.txt -in test13l.xml -xsl CustDetails.xsl It is a java command, which calls Xalan processor to parse through the xml file (test131.xml) using the xsl stylesheet (CustDetails.xsl) and returns Cust.txt. The command works fin...

Trying to cause java.lang.OutOfMemoryException

Hi, I am trying to reproduce java.lang.OutOfMemoryException in Jboss4, which one of our client got, presumably by running the J2EE applications over days/weeks. I am trying to find a way for the webapp to spitout java.lang.OutOfMemoryException in a matter of minutes (instead of days/weeks). One thing come into mind is to write a selen...

Why does this thumbnail generation code throw OutOfMemoryException on large files?

This code works great for generating thumbnails, but when given a very large (100MB+) TIFF file, it throws OutOfMemoryExceptions. When I do it manually in Paint.NET on the same machine, it works fine. How can I improve this code to stop throwing on very large files? In this case I'm loading a 721MB TIF on a machine with 8GB RAM. The Ta...

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 applications check for failure and recover when there is no memory? See also: How often do you check for an exception in a C++ new instructio...

How to resize Large image in NetCF?

I got out of memory exception when I try to load a 1MB image into a PictureBox to display on NetCF. Would appreciate someone can provide me some help. Thanks ...

OutOfMemoryException - out of ideas

Hi I know there is no simple answer to my question but I would appreciate ideas, guides or some sort of things-to-look-at list I have a net Windows service that is constantly throwing OutOfMemoryException. The service has two builds for x86 and x64 Windows. However on x64 it consumes a lot more memory. I have tried profiling it with va...

OutOfMemoryException - out of ideas II

Hello, This question is related to my previous question. The storyline: I have an .NET application which consumes a lot of memory if you look at task manager VMSize. I am trying to find out what consumes this amount of memory. You see in the picture below that VM size is 2,46 GB Ok now I am looking at .net performance counters C...

Out of Memory - web applications

Hi all, I am trying to figure out why Jetty 6.1.22 is running out of memory on my laptop. I have 2 web applications running JBoss Seam, Hibernate (with EHCache), and separate Quartz scheduler instances. With little load, the server dies throwing OutOfMemory. What can I look for? Would you think that I am not properly closing handles...

OutOfMemory Exception on loading a number of small images

Hi I'm trying to load about 600 small images into memory. Size of each image file is less then 2 KB (20 x 30). Thus all images are needs at most 5 MB in memory, even with additional information about size, format etc. But after 400th image Image.FromFile() throws OutOfMemory exception. So, what's the problem? ...

OutOfMemoryException

I have an application that is pretty memory hungry. It holds a large amount of data in some big arrays. I have recently been noticing the occasional OutOfMemoryException. These OutOfMemoryExceptions are occurring long before my application (ASP.Net) has used up the 800mb available to it. I have track the issue down to the area of cod...