Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
4answers
3k views

From what Linux kernel/libc version is Java Runtime.exec() safe with regards to memory?

At work one of our target platforms is a resource constrained mini-server running Linux (kernel 2.6.13, custom distribution based on an old Fedora Core). The application is written in Java (Sun JDK ...
8
votes
5answers
6k views

BitmapFactory OOM driving me nuts

I've been doing a lot of searching and I know a lot of other people are experiencing the same OOM memory problems with BitmapFactory. My app only shows a total memory available of 4MB using ...
5
votes
6answers
4k views

How to avoid OOM (Out of memory) error when retrieving all records from huge table?

I am given a task to convert a huge table to custom XML file. I will be using Java for this job. If I simply issue a "SELECT * FROM customer", it may return huge amount of data that eventually ...
5
votes
7answers
2k views

How can I see what is in my heap in Java?

I've managed to get a memory 'leak' in a java application I'm developing. When running my JUnit test suite I randomly get out of memory exceptions (java.lang.OutOfMemoryError). What tools can I use ...
4
votes
9answers
3k views

How to detect Out Of Memory condition?

I have an application running on Websphere Application Server 6.0 and it crashes nearly every day because of Out-Of-Memory. From verbose GC is certain there are the memory leaks(many of them) ...
3
votes
4answers
2k views

How to debug a MemoryError in Python? Tools for tracking memory use?

I have a Python program that dies with a MemoryError when I feed it a large file. Are there any tools that I could use to figure out what's using the memory? This program ran fine on smaller input ...
2
votes
1answer
21 views

Why don't these memory allocation numbers add up?

I am seeing the following thing in my adb logcat window: 01-24 14:40:56.916: E/dalvikvm-heap(24727): 1957200-byte external allocation too large for this process. 01-24 14:40:56.966: ...
2
votes
3answers
106 views

Android high resolution image processing

From experiments and from reading other posts like this one it seems that it's hard to process high resolution images on Android because there is a limit on how much memory the VM will allow to ...
2
votes
1answer
109 views

OOM out of memory android error while heap has lots of space

Unless I'm reading the below incorrectly this allocation should be absolutely fine? The DDMS shows a Heap size 15.3 Mb Allocated 8.211 Mb Free 7.11 Mb I've run a dump through MAT (I'm not ...
2
votes
0answers
277 views

OOM Killer strikes although overcommit_memory is set to 2

I have application running for hours in embedded Linux, when suddenly the OOM Killer jumps out. I set overcommit_memory=2 and overcommit_ratio=50 to provoke the situation and catch the possible ...
2
votes
1answer
923 views

android createBitmap OOM when ((freeMemory > bitmapSize) && (nativeFreeHeap < bitmap size))

On Android 2.2, the following program produces an OOM. In summary, the program does the following: Allocates a big array that requires native heap to grow close to its maximum size. Garbage collects ...
2
votes
1answer
309 views

Displaying a bitmap of arbitrary size without running out of memory

How do I display an image of arbitrary size without OOMing or downscaling the image. I dont want to downscale due to zooming and dragging of the picture? If it isnt possible to display an image of ...
2
votes
1answer
584 views

MATLAB block size and memory management

I'm using a block processing approach to handle a calculation between two large matrices. The code significantly speeds up when using a larger block size. But if I go too large, then I get an Out ...
2
votes
5answers
1k views

iPhone Out of Memory WEIRD crashing problem

My app crashes after about 20 minutes with status 101 (Out of Memory, I believe) Debugging using Instruments - ObjectAlloc and Leaks gives me no clues. The ObjectAlloc graph stays at a nice constant ...
1
vote
1answer
741 views

Android - BitmapFactory.decodeByteArray - OutOfMemoryError (OOM)

I have read 100s of article about the OOM problem. Most are in regard to large bitmaps. I am doing a mapping application where we download 256x256 weather overlay tiles. Most are totally transparent ...
1
vote
2answers
319 views

Large images in WebView cause Out Of Memory

I have activity that parses XML feed (with news) and loads parsed data (text and image url) in WebView's, which are inside gallery widget. Something like this: mimeType = "text/html"; encoding = ...
1
vote
1answer
189 views

Return code when OOM killer kills a process

I am running a multiprogrammed workload (based on SPEC CPU2006 benchmarks) on a POWER7 system using SUSE SLES 11. Sometimes, each application in the workload consumes a significant amount of memory ...
1
vote
2answers
320 views

After “OOM Killer”, is there a “Resurrector”?

I understand that on Linux there is a kernel functionality referred to as "OOM Killer". When the OOM (Out-Of-Memory) condition subsides, is there such a thing as a "Process Resurrector" ? I ...
1
vote
2answers
172 views

How do I reliably tell that two Inspector references point to the same inspector instance?

[continued from Is there a way to tell whether two COM interface references point at the same instance?] I've got references to Inspector objects from two different sources and need to be able to ...
0
votes
0answers
42 views

how to configure websphere monitoring policy to help recycling a server after crash?

I know this suppose to be straightforward (the checkbox and combobox for this functionality is available in Admin Console >> WebSphere Application Servers >> [Server] >> Monitoring) but I cannot seem ...
0
votes
0answers
66 views

How do you clean up an ArrayAdapter?

I am getting an out-of-memory condition when I use an array adapter and change screen orientation. I have made the smallest fully working code that exhibits this problem. package com.foobar.test; ...
0
votes
6answers
97 views

Java heap space error while reading file in byte array

I am getting java out of heap error while using following code. Can someone tell me what I am doing wrong here ? On debugging I see taht value of length is 709582875 In main function File file = ...
0
votes
2answers
52 views

Upload file throw OutOfMemoryError

I want to upload a file to net server use the codes. but when the size > 6M ,throw a FATAL EXCEPTION java.lang.OutOfMemoryError HttpURLConnection conn; URL url = new URL(mServerUrl); ...
0
votes
0answers
70 views

Application crash in Sony Xperia

My application has an animated splash screen. It consists of 15 images each of size 300KB. The splash stays for about 4 seconds. I have created an AnimationDrawable object. Added drawables ...
0
votes
3answers
101 views

Out of memory condition for a simple activity

I have an activity which does this: @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.list); ListView lv = ...
0
votes
1answer
38 views

JNI: does GetStringUTFChars() throw an OOM on failure or not?

I am currently working on a project of mine which will use JNI heavily, and JNI is quite new to me... I am reading a lot about it, and I have one problem: in one native function, I want to return an ...
0
votes
1answer
212 views

Using SoftReference to cache Bitmap on Android cause OOM

I'm developing an application that need to load Bitmap. And using a SoftReference for the cache. I relate every soft reference with a ReferenceQueue and using a hash map to access the SoftReference . ...
0
votes
0answers
59 views

“Smart” image scaling down and variables deep description

I would like to scaling down images "smartly" using this method found here. I've just managed a little bit the code to fit my needs. public Bitmap scaling_bitmap(int resourceID) { Bitmap output = ...
0
votes
0answers
33 views

Out of Memory for Gallery with Two Adapters

I have 2 activities. First activity has 2 buttons button "show gallery" and button "show gallery from web". It's like private void IntentToGallery(int type){ //Types: 1 = Gallery, 2 = WEB ...
0
votes
1answer
41 views

Cannot open HPROF file

I'm using Eclipse Indigo and I'm following this tutorial, after I run the example project and get my HPROF file, I tried to open it (see 3.3 Use MAT in the link I gave), I just keep receiving 'Out of ...
0
votes
0answers
46 views

Forcing OOM Killer [closed]

We run a research server and every user has a quite generous memory quota. Because of this at times, users start concurrent applications that consume the entire RAM of the server making it impossible ...
0
votes
0answers
97 views

JVM process killed by OS

I've implemented a web service using Camel's Jetty component through Akka (endpoint) which forwards received messages to an actor pool with the setup of: def receive = _route() def lowerBound = ...
0
votes
1answer
327 views

Bitmap Memory Leak?

got a question for you. I've been making a menu system that mimics ViewFlipper except I personally reset the images and text within the RootView myself, trying to avoid Bitmap related OOM. All was ...
0
votes
2answers
149 views

Java XmX = Do I have to set it to prevent Linux OOM

just my complete Linux box crashed with OOM (OOM Killer Process killed the wrong processes), due to a java application consumed too much memory and there was no memroy left. My question is, if I use ...
0
votes
1answer
218 views

Flash Builder Profiler runs out of java heap space trying to expand paths to GCRoot

Using Flash Builder 4 on Mac OS X, trying to debug why it seems our Air app is leaking the objects declared in the MXML files, but if I try to expand the Instance in the Object Reference tab of the ...
0
votes
1answer
82 views

Stack trace for thread causing an OOM

I have a java application which is getting an OutOfMemoryError, for heap space. I've enabled -XX:HeapDumpOnOutOfMemoryError, and have the resultant hprof file. The dump, however, shows that there is ...
0
votes
1answer
76 views

Outlook Object Model ContactItem won't delete

I'm bedeviled by this. I have a c# application that I need to have a backup before I modify my main contact. But it seems that the copy, sticks around no matter what. I'm verifying this by visual ...
0
votes
1answer
272 views

Resizing bitmap with inSampleSize <2 or in other way without running into OoM

I have large zoomable bitmaps with text, that I want to resize a little bit. Easiest way is to use inSampleSize, but the minimum value for it to work is 2, which is not acceptable (resizing image in ...
0
votes
2answers
172 views

What is the possible causes of “java.lang.OutofMemoryError” in a executing thread?

I have met a Out of Memory problem in my application. In one of my threads execution, there is a sudden java.lang.OutofMemoryError and make that threads die. I have already select the memory heap ...
0
votes
1answer
190 views

excessive memory use by java

In a project of mine I constantly compress little blocks of data. Now I find out that the jvm then grows to 6GB of ram (resident (RES) RAM, not shared or virtual or so) and then die because of out of ...
0
votes
2answers
116 views

communicate with server and android client through XML

I am communication with server through XML. The XML gone soo much huge that I am now getting OOM error on my Android phone. I am using URLConnection. while(null != (xmlResponse = ...
0
votes
2answers
208 views

Program is Killed During Testing

When I run my program I get the message Killed with some information about the script. After doing some research on the problem, I found out that I wasn't deleting my dynamically allocated variables ...
0
votes
2answers
469 views

Forcing Portrait mode OOM bitmap resize

Whenever I force portrait mode in onCreate setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); I get an error What does Portrait mode have to do with OOM VM budget on image scale? ...
0
votes
2answers
332 views

linux OOM (out of memory) killer email notification?

This answer describes the out of memory killer on Linux. Is there a way to get notified when the OOM killer has killed something? Email is preferable. One might do this with a watchdog, but I ...