Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

Difference between Long-Term and Short-Term Scheduler

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Long-Term Scheduler is also known as Job Scheduler. Long-term scheduler regulates the programs which are selected to system for processing. In this the programs are setup in the queue and as per the requirement the best one job is selected and it takes the processes from job pool. It regulates the Degree of Multi-programming (DOM). Short-Term Scheduler is also known as CPU Scheduler. Short-Term Scheduler ensures which program is suitable or important for processing. It regulates the less DOM (Degree of Multi-programming). 

Prerequisite - Process Scheduler 

 

Difference Between Long-Term and Short-Term Scheduler:

Long-Term SchedulerShort-Term Scheduler
Long-Term Scheduler takes the process from job pool.Short-Term Scheduler takes the process from ready queue.
Long-Term Scheduler is also known as Job Scheduler.Short-Term Scheduler is also known as CPU Scheduler.
In Long-Term Scheduler, the programs are setup in the queue and as per the requirement the best one job is selected.In Short-Term Scheduler no such queue is exist.
It regulates the more DOM (Degree of Multi-programming).It regulates the less DOM (Degree of Multi-programming).
It regulates the programs which are selected to system for processing.It ensures which program is suitable or important for processing.
Speed is less than the short-term scheduler.Speed is very fast as compared to long-term scheduler.
Long-Term Scheduler changes the process state from New to Ready.Short-Term Scheduler changes the process state from Ready to Running.
Time-sharing operating systems have no long-term scheduler.It may be minimal in time-sharing system.
It select a good process, mix of I/O bound and CPU bound.It select a new process for a CPU quite frequently.
Long-Term Scheduler control Multi-ProgrammingShort-Term Schedule control Multitasking
My Personal Notes arrow_drop_up
Last Updated : 04 Jul, 2022
Like Article
Save Article
Similar Reads