This is the exact mechanism behind Linux's `taskset` and `sched_setaffinity(2)`, which production systems use to pin latency-sensitive workloads like Redis or DPDK packet processors away from cores handling interrupts, avoiding cache-line bouncing across NUMA nodes. Getting affinity-aware load balancing wrong is a real operational trap: pinning too many processes to one core creates the exact imbalance this task asks you to demonstrate.