Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am working on a small task where I am required to store around 1 billion integers in an Array. However, I am running into a heap space problem. Could you please help me with this?

Machine Details : Core 2 Duo Processor with 4 GB RAM. I have even tried -Xmx 3072m . Is there any work around for this? The same thing works in C++ , so there should definitely be a way to store this many numbers in memory.

Below is the code and the exception I am getting :

public class test {
    private static int C[] = new int[10000*10000];

    public static void main(String[] args) {
        System.out.println(java.lang.Runtime.getRuntime().maxMemory()); 

    }

}

Exception : Exception in thread "main" java.lang.OutOfMemoryError: Java heap space at test.(test.java:3)

share|improve this question
2  
We need more information to answer this question... Are those integers random? What is their range? Does their order matter? Can they be repeated? – thkala Feb 2 at 21:03
You know about java -mx right? – Miserable Variable Feb 2 at 21:03
@MiserableVariable: to store 1 billion ints you need about 4GB of heap space. That is not always available... – thkala Feb 2 at 21:04
Possible duplicate question: stackoverflow.com/questions/650274/… – David Feb 2 at 21:04
3  
Almost all responses here lean towards a way to store your data more efficiently and that's because it's highly possible that what you are trying to accomplish can be done without actually storing all 1 billion numbers simultaneously in memory. If you share details on access patterns of your data, you may get more meaningful responses. – Ameen Feb 2 at 21:23
show 3 more comments

5 Answers

Use an associative array. The key is an integer, and the value is the count (the number of times the integer has been added to the list).

This should get you some decent space savings if the distribution is relatively random, much more so if it's not.

share|improve this answer
Good idea. Really, it should be many repetitive values in the array of this size. – Audrius Meškauskas Feb 2 at 21:21
@Dave: a Hashtable, at least as implemented in the Java libraries is one of the worst methods w.r.t. space efficiency. Your approach would only make sense when you have a only few integers with high appearance frequency... – thkala Feb 2 at 21:21
@thkala I'll amend to "associative array of your choice"... – Dave Feb 2 at 21:22
@Dave: that's the point: most associative arrays have a significant overhead per-entry. Unless a lot of the integers are repeated, a primitive int[] may still be better... – thkala Feb 2 at 21:24
@thkala: it's only better until you run out of space :) – Dave Feb 2 at 21:24
show 1 more comment

If you need to store 1 billion completely random integers then I am afraid that you really do need to corresponding space, i.e. about 4GB of memory for 32-bit int numbers. You can try increasing the JVM heap space but you need to have a 64-bit OS and at least as much physical memory - and there is only so far that you can go.

On the other hand, you might be able to store those number more efficiently if you can make use of specific constraints within your application.

E.g. if you only need to know if a specific int is contained in a set, you could get away with a bit set - i.e. a single bit for each value in the int range. That is about 4 billion bits, i.e. 512 MB - a far more reasonable space requirement. For example, a handful of BitSet objects could cover the whole 32-bit integer range without you having to write any bit-handling code...

share|improve this answer
RAM is not the only memory we have. There is also swap. – Audrius Meškauskas Feb 2 at 21:15
@AudriusMeškauskas: yes, but as far as I know, the JVM will absolutely refuse to allocate more heap that what is available as physical RAM... – thkala Feb 2 at 21:20
I am not convinced. Where have you seen this documented? Difference between RAM and swap kind of should be transparent for the program. But probably will be slow. – Audrius Meškauskas Feb 2 at 21:23
1  
@AudriusMeškauskas: Sorry, this indeed does seem to be the case in modern JVMs. My JVM will happily start with -Xmx80g which is actually more than both RAM+swap on my system... – thkala Feb 2 at 21:30
Of course, depending on what one is doing with all those ints, using swap space might be little better than doing the computations by hand :-) – thkala Feb 2 at 21:32

You can increase to 4GB on a 32 bit system. If you're on a 64 bit system you can go higher.

Type in cmd this

java -Xmx4g programname
share|improve this answer
7  
Actually no 32-bit JVM can go to 4GB. The OS does not allow it... – thkala Feb 2 at 21:09

As array so big may not fit into your RAM, you need to configure the sufficient HDD swap space. 4 - 16 Gb on swap do not look like something unrealistic at these times.

Java only allows to use int as an index of array, not long. Hence the largest possible array could have 2147483648 values, enough.

Use -Xmx to raise the memory ceiling that by default will probably be insufficient. 3072m is not enough as one billion ints requires about 4 Gb. As space is needed also for the operating system and the like, that machine with 4 Gb RAM cannot hold all 4 Gb data structure in memory.

JRE or OS may also refuse to grant an piece of memory so big in one go, requiring to allocate in some smaller chunks (maybe array or arrays).

share|improve this answer

May be using memory mapped files will help? They are not allocated from the heap. Here is an article how to create a matrix. An array should be easier.

Using a memory mapped file for a huge matrix - Peter Lawrey

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.