| ▲ | PunchyHamster 4 hours ago | |||||||
it's not really bottlenecked by the store but by the calculations performed on each pod schedule/creation. It's basically "take global state of node load and capacity, pick where to schedule it", and I'd imagine probably not running in parallel coz that would be far harder to manage. | ||||||||
| ▲ | senorrib 3 hours ago | parent | next [-] | |||||||
No a k8s dev, but I feel like this is the answer. K8s isn't usually just scheduling pods round robin or at random. There's a lot of state to evaluate, and the problem of scheduling pods becomes an NP-hard problem similar to bin packing problem. I doubt the implementation tries to be optimal here, but it feels a computationally heavy problem. | ||||||||
| ||||||||
| ▲ | __turbobrew__ an hour ago | parent | prev [-] | |||||||
The k8s scheduler lets you tweak how many nodes to look at when scheduling a pod (percentage of nodes to score) so you can change how big “global state” is according to the scheduler algorithm. | ||||||||