Batch and Multiprogrammed Systems

Group if jobs submitted to machine together, Batch. A job was originally presented to the machine (and its human operator) in the form of a set of cards - these cards held information according to how ``punched'' out of the cardboard. The operator grouped all of the jobs into various batches with similar characteristics before running them (all the quick jobs might run, then the slower ones, etc.). Result: Improved system throughput and utilization, but lost interactivity.
Since the I/O used slow mechanical devices, the CPU was often idle waiting on a card to be read or some result to be printed, etc. One way to minimize this inefficiency was to have a number of jobs available and to switch to running another one to avoid idleness. Result: Improves throughput and utilization.
In multiprogrammed systems, a number of programs were resident in memory and the CPU could choose which one to run. One way to choose is to just keep executing the current program until an I/O delay is pending - instead of just waiting, the CPU would move onto the next program ready to be run. Result: Job scheduling policies, Memory management and protection, improves throughput and utilization, still not interactive.
Figure 1.2: Job Interleaving
\includegraphics[scale=1]{figures/jobinterleaving.ps}
Figure 1.3: Memory Layout; Simple Batch, Multi Programming
\includegraphics[scale=0.7]{figures/memorylayoutsimplebatch.ps} \includegraphics[scale=0.5]{figures/multiprogramming.ps}
2004-05-25