[Feature Request] Dynamic Config #11383
saurabhnemade
started this conversation in
Ideas
Replies: 1 comment
-
|
Hi, thanks for sharing. This makes perfect sense to me. Unleash already have the variant json payload, which is almost what you talk about, with some minor excpetions:
This is on our backlog, but we are not able to commit any timeline just yet. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Not sure if anyone thought of adding it to Unleash but putting out an idea and proposal for discussion on Dynamic Config.
Purpose:
Why its different from feature flag?
Sometimes we don't need yes/no or if yes give this segment. Sometimes in development you just need a configurable, maintainable json configuration.
Its just a json config which gets validated against optional schema that user may or may not provide. If user provides a schema then it uses that schema to validate the given config before updating it (on api level).
Use cases:
A few examples:
Performance:
For optimal performance, the config can be super easily cached and served to million of calls without much additional efforts. No need to worry about stickiness of config. Its always constant and updates only when globally updated. Clients can cache it and reuse it until they make another call and find out it has been changed.
If you want, you can extend and monitor traffic count on the global config just for providing nice dashboards or identifying incidents or anything else.
Beta Was this translation helpful? Give feedback.
All reactions