Is there a theoretical limit for the number of key entries that can be stored in a HashMap or does it purely depend on the heap memory available?

Also, which data structure is the best to store a very large number of objects (say several hundred thousand objects)?

link|improve this question

Did you mean to ask about number of unique keys, or number of entries? I could have sworn HashMap was built with buckets, so while there are Integer.MAX_VALUE buckets at most, each of them can have a list with many, many entries. – Phil Nov 8 '10 at 12:32
2  
Interesting Question, gets my +1 – Martijn Verburg Nov 8 '10 at 12:32
Diffierent people have different ideas of large. Can you be more specific, do you mean 100s, 1000s, millions, millions, trillions? – Peter Lawrey Nov 8 '10 at 12:36
Yes I have specified the size (several lakhs or millions) – Ebbu Nov 8 '10 at 13:37
feedback

5 Answers

up vote 9 down vote accepted

Is there a theoretical limit for the number of key entries that can be stored in a HashMap or does it purely depend on the heapmemory available ?

Looking at the documentation of that class, I would say that the theoretical limit is Integer.MAX_VALUE (231-1 = 2147483647) elements.

This is because to properly implement this class, the size() method is obliged to return an int representing the number of key/value pairs.

From the documentation of HashMap.size()

Returns: the number of key-value mappings in this map


which data structure is the best to store a very large number of objects(say several lakh objects)?

I would say it depends on what you need to store and what type of access you require. All built in collections are probably well optimized for large quantities.

link|improve this answer
+1 for mentioning size. – Bozho Nov 8 '10 at 12:32
I didn't read the comment, I was not aware about this limit... – pgras Nov 8 '10 at 12:36
4  
Actually, size() is not really a problem: If the map contains more than Integer.MAX_VALUE elements, returns Integer.MAX_VALUE. - download.oracle.com/javase/6/docs/api/java/util/Map.html#size() Only client code not recognizing the true meaning of size() should be a problem. – gustafc Nov 8 '10 at 12:50
1  
@gustafc, ah, interesting point. However, the documentation of HashMap.size() refines this specification: download.oracle.com/javase/6/docs/api/java/util/… It's questionable though, whether or not that's probably a "bug" in the specification :-) – aioobe Nov 8 '10 at 12:56
1  
@jarnbjo, I'm not entirely convinced this won't be fixed - we can just as well argue that there may be code relying on HashMap correctly implementing Map. We'll see who's right when my or aioobe's bug reports are responded to. – gustafc Nov 9 '10 at 9:49
show 12 more comments
feedback

HashMap holds the values in an array, which can hold up to Integer.MAX_VALUE. But this does not count collisions. Each Entry has a next field, which is also an entry. This is how collisions (two or more objects with the same hashcode) are resolved. So I wouldn't say there is any limit (apart from the available memory)

Note that if you exceed Integer.MAX_VALUE, you'll get unexpected behaviour from some methods, like size(), but get() and put() will still work. And they will work, because the hashCode() of any object will return an int, hence by definition each object will fit in the map. And then each object will collide with an existing one.

link|improve this answer
1  
"but get() and put() will still work", are you sure? The comment of the resize method of HashMap says "If current capacity is MAXIMUM_CAPACITY, this method does not resize the map, but sets threshold to Integer.MAX_VALUE. This has the effect of preventing future calls." – aioobe Nov 8 '10 at 12:38
1  
The documentation of HashMap#size() actually limits the number of key-value mappings to a number representable by an int. If a HashMap would allow more mappings, the documentation of the size() method would have been inherited from Map#size(), which defines the method to return Integer.MAX_VALUE if the size is > Integer.MAX_VALUE. – jarnbjo Nov 8 '10 at 12:40
hashCode() returns int. Hence after the table is full, there will be only collisions. – Bozho Nov 8 '10 at 12:44
@aioobe it will prevent future calls to resize (because of "if (size++ >= threshold) resize(...)" – pgras Nov 8 '10 at 12:45
Ah, ok, thanks. I see how my comment doesn't make sense. – aioobe Nov 8 '10 at 12:46
feedback

There is no theoretical limit, but there is a limit of buckets to store different entry chains (stored under a different hashkey). Once you reach this limit every new addition will result in a hash collision -- but this is no a problem except for performance...

link|improve this answer
feedback

I agree with @Bozho's and will also add that you should read the Javadoc on HashMap carefully. Note how it discusses the initial capacity and load factor and how they'll affect the performance of the HashMap.

HashMap is perfectly fine for holding large sets of data (as long as you don't run out of keys or memory) but performance can be an issue.

You may need to look in to distributed caches/data grids if you find you can't manipulate the datasets you need in a single Java/JVM program.

link|improve this answer
feedback

no. there is no limit!

link|improve this answer
well, I'm not so sure. Maybe there is a limitation :( – stanel Nov 8 '10 at 13:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.