I'm running YourKit over a simple program I've wrote that tries to solve the Traveling Salesman Problem by brute force, running several threads at once (in the current case, 8).

As the below picture shows, it seems that instead of having 8 fixed threads during the program's life-time, it seems to be using 8 threads for some time, then other 8 threads for some other time, and it seems to keep on switching each couple of minutes.

enter image description here

I was curious about this behavior. Has anyone any kind of extra info on why this happens?

link|improve this question

2  
This could be a profiler byproduct and not what is happening in the real world. – Gray Feb 22 at 19:30
Good point! Anyone has any more info? – devoured elysium Feb 22 at 19:38
Can you show us the code that you are using to create threads? Can you print thread name (Thread.currentThread().getName()) from time to time? Looks like your application already created 400 (50 cycles). How does it look like e.g. in JVisualVM? Or jstack? – Tomasz Nurkiewicz Feb 22 at 20:00
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.