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.

I was curious about this behavior. Has anyone any kind of extra info on why this happens?
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? Orjstack? – Tomasz Nurkiewicz Feb 22 at 20:00