I'm working on developing a online-judge type system where maybe 100 or so untrusted executables will all be running simultaneously and evaluating the same input data.
I'd like each executable to be limited to an equal share of CPU, memory, disk space, etc. of a pre-defined resource pool. For example if the resource pool were set to 3/4 of the machine's CPU, 3 GB of memory, 300 GB of disk, and 2 executables were running, each would get 3/8 of the CPU, 1.5 GB of memory, 150 GB of disk. If another were to join in, the resource would be readjusted into three equal slices. This is to prevent a malicious or buggy executable from stealing resources from others as well as to give everyone equal resources.
Ideally, I'd also like the executables to not be constrained to a single language (e.g. let users develop in whatever they're comfortable -- C, C++, Java, Python, etc.).
Using a whole VM or something like OpenVZ seems like overkill. Are there lighter weight alternatives that essentially use a separate process for each executable while limiting its resources, disabling things like network access, process spawning, etc.? Part of the reason I'm looking for a light weight solution is that there's quite a bit of input data -- would rather not have to copy it to each executable but let them read from shared memory.