Unreleased Release Notes¶
2.7.0¶
New Features¶
Added a new memcached driver that uses pymemcache through dogpile.cache.
Configuration option
memcache_pool_flush_on_reconnect
added to control if flush will be sent to memcached server after reconnect.
Bug Fixes¶
[bug 1888394] If a memcache server disappears and then reconnects when multiple memcache servers are used (specific to the python-memcached based backends) it is possible that the server will contain stale data. To avoid this, param flush_on_reconnect was used in code.
But unfortunately this option is causing another issue. If memcache server disappears, or client had broken connection to memcache server, clients start to flush server on reconnect.
This means that network connections will go UP and can cause server to be overloaded until memcache will be unresponsive.
Simply said this option can cause loops of flushes and overloaded memcached servers. This change is moving optional parameter
flush_on_reconnect
to oslo.cache config.