Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Advantages and disadvantages with Static- and Dynamic Scheduling

I'm opening this questions since I can't find easy to understand summarized information about this topic. There isn't even a good youtube-video that explains this.

I'm currently studying realtime programming and statical- and dynamical scheduling is a part of it. I just can't seem to get my head around it.

If there is someone who can explain the advantages and disadvantages with statical- and dynamical scheduling in a educational way, that would really be helpful.

What I've got so far is the following:

  1. Statical scheduling: Is a off-line approach where a schedule is generated manually. It can be modified during run-time, but isn't suggested because it then can cause the threads to miss it's deadlines. It's easy to implement and to analyze. Because it's easy to analyze it's easy to see if the system is going to make all of its deadlines.

  2. Dynamical scheduling: Is a on-line approach where the schedule is generated automatically. It can be modified during run-time by the system and it should't cause (in most cases) the threads to miss its deadlines. If the system changes it's easy to generate a new schedule since it's automatically generated. There isn't a guarantee that the system meets all its deadlines.

Anyone that can explain these two a bit better than me? Or perhaps add more information about these two. Perhaps illustrate it with a image so it'll be easier to wrap my head around it.

like image 481
Ramo Mislimi Avatar asked Oct 16 '16 11:10

Ramo Mislimi


People also ask

What are the advantages of dynamic scheduling?

Dynamic Scheduling scheduling is faster in execution than static scheduling, since it's basically a free flyer without any intentional waits, joins etc. (any kind of synchronization/protection between threads). Dynamic Scheduling is not aware of any thread dependencies (safeness, synchronization etc.).

What is the difference between static scheduling and dynamic scheduling?

A fundamental distinction is made between static and dynamic scheduling. Static schedules are fixed before execution based on the information available at that time, whereas dynamic schedules are determined during runtime.

What is static process scheduling write the advantages of static process scheduling?

The major advantage of static scheduling methods is that all the overhead of the scheduling process is in- curred at compile time, resulting in a more efficient execution time environment compared to dynamic sched- uling methods. However, static scheduling suffers from many disadvantages, as discussed shortly.

What is the difference between static scheduling and dynamic scheduling in context of real time task scheduling?

Static scheduling makes scheduling decisions at compile time and is off-line. Dynamic scheduling is online and uses schedulabilty test to determine whether a set of tasks can meet their deadlines. The present paper talks about static and dynamic scheduling algorithms and operating systems support for these mechanisms.


1 Answers

In simple terms,

Static Scheduling is the mechanism, where we have already controlled the order/way that the threads/processes are executing in our code (Compile time). If you have used any control(locks, semaphores, joins, sleeps) over threads in your program (to achieve some goal), then you have intended to use static (compile time) scheduling.

Dynamic Scheduling is the mechanism where thread scheduling is done by the operating systems based on any scheduling algorithm implemented in OS level. So the execution order of threads will be completely dependent on that algorithm, unless we have put some control on it (with static scheduling).

I think the term 'advantages' would not be the best term here. Simply when you are implementing any control over threads with your code to achieve some task, you should make sure that you have used minimal controls and also in most optimized way. :))

Addition:

Comparison between Static & Dynamic Scheduling

Generally we would never have a computer program which would completely depend on only one of Static or Dynamic Scheduling.

Instead we would have some programs which are pretty much in controlled from the code itself (Strongly static). This would be a good example for that.

And some programs would be strongly dynamic (weakly static). This would be a good example for that. There you might see other than the start of 2 threads, rest of the program execution would be a free flyer.

Please don't try to find a disclaimer criteria which would seal a program either a strongly static or strongly dynamic one. :))

Positives & Negatives

  • Dynamic Scheduling scheduling is faster in execution than static scheduling, since it's basically a free flyer without any intentional waits, joins etc. (any kind of synchronization/protection between threads).

  • Dynamic Scheduling is not aware of any thread dependencies (safeness, synchronization etc.). If you followed above sources I mentioned, you would probably have the idea.

  • So generally, how good multi-threading programmer you are, would depend on how limited restrictions, dependencies, bottlenecks you have implemented on your threads yet to achieve your task successfully. :))

I think I have covered quite a things. Please raise me questions if any. :))

like image 167
Supun Wijerathne Avatar answered Oct 13 '22 09:10

Supun Wijerathne