You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This line or ConfigServerConfigDataLoader adds a new OriginTrackedMapPropertySource with items loaded from the config server.
If there are a large number of properties then binding operations in Spring Boot can become very slow. This is due to SpringIterableConfigurationPropertySource constantly remapping entries.
Performance improves significantly if the alternate OriginTrackedMapPropertySource constructor is used and the immutable argument is set to true.
The text was updated successfully, but these errors were encountered:
Hi. Let me know if this should go into a different issue, but we've also faced an added issue, I think specific to Redis and possibly other sources. Please take a look at my comment: spring-projects/spring-boot#28723 (comment)
ryanjbaxter
added a commit
to ryanjbaxter/spring-cloud-config
that referenced
this issue
Mar 7, 2023
This line or
ConfigServerConfigDataLoader
adds a newOriginTrackedMapPropertySource
with items loaded from the config server.If there are a large number of properties then binding operations in Spring Boot can become very slow. This is due to
SpringIterableConfigurationPropertySource
constantly remapping entries.Performance improves significantly if the alternate
OriginTrackedMapPropertySource
constructor is used and theimmutable
argument is set totrue
.The text was updated successfully, but these errors were encountered: