-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove config cache #8704
Remove config cache #8704
Conversation
ed486c7
to
3af0032
Compare
3af0032
to
54d0bff
Compare
84eee95
to
4b1b620
Compare
@@ -93,6 +93,7 @@ | |||
|
|||
- Change the default of `lua_ssl_trusted_certificate` to `system` | |||
[#8602](https://github.com/Kong/kong/pull/8602) to automatically load trusted CA list from system CA store. | |||
- `data_plane_config_cache_mode` and `data_plane_config_cache_path` were removed [#8704](https://github.com/Kong/kong/pull/8704). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The data plane config cache mechanism and its related configuration options have been removed (data_plane_config_cache_mode
and data_plane_config_cache_path
) The config cache is now automatically persisted on disk with LMDB. With this change, #8704.
@aboudreault do we have a EE sister PR for this? |
058f19a
to
dc1f746
Compare
4b1b620
to
0bdff66
Compare
d70f0ef
to
3ce3231
Compare
3ce3231
to
6b3580c
Compare
The data plane configuration is now persisted on disk with the LMDB database. At startup, the node automatically reload the latest version of the configuration. The config cache mechanism is not useful anymore.
6b3580c
to
76b6441
Compare
The data plane configuration is now persisted on disk with the LMDB database. At startup,
the node automatically reload the latest version of the configuration. The config cache mechanism is not useful
anymore.
Do not merge, depends on: #8670