As far as I know it is possible to propagate refresh event among microservices via Spring Cloud Bus when Spring Cloud Config Server configuration changes. This then triggers pull of the latest configuration from Spring Cloud Config Server by the microservices notified.
Does this approach scale well? I mean we can have 1000s of microservice instances and if some global configuration changes then at the same instant all these 1000s of microservices will try to get the config from the Config Server. Doesn't this potentially mean overload and crash?