I'm looking for the GPars functionality which allows to separate the big task in sequencially executed portions of parallized subtasks sets.
i.e. iterating the Array size of K, doing the sequencial assignments of parallel tasks blocks each having the size of threadCount.
In other words do not iterate the array at the first and submit all tasks at once, but doing the assignment sequencially, using i.e. pagination, when the previous block is ready (preventing OOM).
Something like the code below, but instead of listing pages and submitting tasks at first, the pages has to be processed sequencialy.
myHugeList.getNextPage().each {
withPool(threadCount) { Closure.callAsync().get() }
}
Thanks, Yefym