Simple experiment has shown that JDK7 compiled HashMap<Integer, Integer> uses many threads when performing simple serial insert-find benchmark:

  1. Insert million numbers.
  2. Search for hundreds of millions numbers.

How come? JDK7 automatically guesses how to parallelize this code??? I need to benchmark a single-threaded behavior, how could I do it?

Code, about 2.5 cores are loaded:

import java.util.*;

public class HashSpeed {
        public static void main(String[] args)
        {
                HashMap<Integer, Integer> m = new HashMap<Integer, Integer>(10000);
                final int N = 10000000;

                for (int i=1; i<N; i+=2)
                        m.put(i, i);
                for (int j=0; j<10; j++) {
                        for (int i=0; i<N; i++) {
                                if (m.get(i) != null != (i%2==1)) {
                                        System.out.println("failed");
                                }
                        }
                }
                System.out.println("TEST OK");
        }
}
link|improve this question

5  
Provide code, please, and the evidence that suggests multithreading? – Louis Wasserman Jan 31 at 22:20
@LouisWasserman: Done. – James Jan 31 at 22:25
This does not include the evidence that leads you to believe that it's multithreading... – Louis Wasserman Jan 31 at 22:28
feedback

2 Answers

up vote 2 down vote accepted

How did you verify that the HashMap code is actually using multiple Java threads? From your description, it sounds like you are looking at the OS level (e.g. Task Manager for Windows). This can be deceptive. The JVM can use multiple threads, for things like garbage collection, etc. But that doesn't mean that the Java code you are running is using multiple threads.

The easiest way to find out for sure is to look at the OpenJDK source :-).

link|improve this answer
Great, that probably answers my question. – James Jan 31 at 22:33
feedback

If you read the openjdk source code (it's open source) you'd find that HashMap does not create threads.

What makes you think it does?

link|improve this answer
Because CPU is 250% loaded, you think it's not the HashMap but the garbage collector or something? – James Jan 31 at 22:32
feedback

Your Answer

 
or
required, but never shown

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