InterviewSolution
Saved Bookmarks
| 1. |
What do you mean by FIFO scheduling in HDFS? |
|
Answer» FIFO also KNOWN as First In First Out is the simple job SCHEDULING algorithm in HADOOP which implies that the tasks or processes that come first will be served first. In Hadoop, FIFO is the default scheduler. All the tasks or processes are placed in a QUEUE and they get their TURN to get executed according to their order of submission. There is one major disadvantage of this type of scheduling which is that the higher priority tasks have to wait for their turn which can impact the process. |
|