Say I have a Django application and I unloaded the environment variable store on etcd. When I deploy a new server, the application can read from etcd, write vars to a (for example) Python file, which can be conditionally loaded when the application loads. It is acceptable.
However, when changing the configuration, I do not know. Afaik etc. Do not broadcast changes. Do I need to configure a daemon that polls and then restarts my application when the values โโchange? Should I request etcd when I need to use one of these options? How do people deal with this?
source share