Kubernetes APIServer Adaptive Concurrency Limit
Kubernetes controllers use informers to connect to APIServers, it has a famous LIST-WATCH mechanism in it. The problem with this is, when an APIServer crashes / restarts, all controllers connected to the APIServer will be forced to reconnect, and send the LIST request again to APIServer. LIST requests are very expensive, while WATCH requests are quite cheap. All controllers sending LIST requests to an APIServer in a short time window will make sure that APIServer is overwhelmed again, and never succeed in starting up....