wannabeGPT / CS_study

0 stars 0 forks source link

스케줄링 #54

Open moonstal1506 opened 1 year ago

moonstal1506 commented 1 year ago
moonstal1506 commented 1 year ago

스케줄링

anuu0916 commented 1 year ago

콘보이 현상(convoy effect)이란 무엇이고, 콘보이 현상이 발생될 수 있는 cpu 스케줄러 알고리즘은 무엇인지 설명해주세요.

콘보이 현상이란 작업 시간이 긴 프로세스가 먼저 큐에 도착해서 다른 프로세스의 실행 시간이 전부 늦춰져 효율성을 떨어뜨리는 현상을 말합니다. FCFS(First-Come First Served) 스케줄링은 비선점형으로, 순차적으로 먼저 큐에 들어온 작업부터 실행하므로 콘보이 현상이 발생할 수 있습니다.

출처 : https://dev-coco.tistory.com/162

anuu0916 commented 1 year ago

선점 알고리즘

비선점 알고리즘