I have a list of tasks. Each task consumes different amount of memory. I can predict memory consumption for particular task very roughly, so I can't rely on such predictions.
For instance:
- Tasks consumes from 200m to 1g of RAM, but 450m avg.
- Max memory is 2G (-Xmx2g)
- And number of available threads is 4.
So if I'll just submit them all, I have OutOfMemmoryException with almost 100% chance. If I'll use only 2 or 1 thread, I loose performance.
I'm going to check available free memory inside runnable task during execution, terminate it if there is not enough memory, and execute them later with smaller amount of threads. But there is possible race condition when all four tasks detects low memory level at the same time, and terminate them-selfs. So I need some kind of supervisor which will evict tasks one by one.
Anyway this solution doesn't seems elegant, so is there best practices for such case, maybe some way to control tasks submission rate or anything else?