Joydeep Sen Sarma wrote:
can we suspend jobs (just unix suspend) instead of killing them?
We could, but they'd still consume RAM and disk. The RAM might eventually get paged out, but relying on that is probably a bad idea. So, this could work for tasks that don't use much memory and whose intermediate data is small, but that's frequently not the case.
Doug