scheduling
DevOps interview questions tagged scheduling, across every topic.
16 questions · 6 unlocked for you
Concepts behind "scheduling"
The concept pages behind what these questions are testing.
Foundational
Requests are what the scheduler believes, limits are what the kernel enforcesTwo numbers that look like a pair are read by two different systems for two different purposes. Requests decide placement and are a claim about the future. Limits decide runtime enforcement and are a cgroup setting. Nearly every strange capacity problem in Kubernetes comes from conflating them.☸️ Containers & Kubernetes
Core
Why GPUs break the assumptions schedulers are built onGPU scheduling must account for device memory, sharing boundaries and interconnect topology. Device plugins, MIG, DRA and gang scheduling address different constraints; none makes accelerators behave like interchangeable CPU millicores.🤖 AI InfrastructureSign in