I have Java application which run threads to do some job for N times for each thread and there can be setuped threads number. Each job iteration for each thread takes from 20 seconds to 1-1.5 minutes. Each thread have to do about 25000-100000 iterations for that job. So previously added jobs have more "done jobs" and they have higher priority (as I thinks for JVM but prioritet isn't setuped and they have equal priority programmly). But I need threads to do jobs evenly after some new tasks addition. For example there are 5000 threads to do 100 jobs for 100000 iterations:
- Old job #1 doing it
- Old job #2 doing it
- ...
- Old job #100 doing it
But when I add for example job #101 then I'll see that threads don't run it as fast as first jobs. I've used yield() and sleep(50) but it seems not good results. So can you please tell me what am I doing wrong and how to do excellent performance for too many threads?