Skip to content

ZDM Proxy v2.1.0

Compare
Choose a tag to compare
@github-actions github-actions released this 13 Jan 15:37
· 14 commits to main since this release
f893984

Release Notes

General release notes for the ZDM Proxy.

Build artifacts are available at Docker Hub.

For additional details on the changes included in a specific release, see the associated CHANGELOG-x.x.md file.

v2.1.0 - 2023-11-13

Enables read only workloads to work correctly with ZDM-Proxy and Datastax Astra.

Astra terminates idle connections after a period of inactivity and Datastax Drivers send periodic heartbeats by default if the user does not send any request in a time interval so this is not an issue in a normal deployment.

With ZDM-Proxy in the mix, there won't be an issue if the workload has both reads and writes because if a heartbeat is sent by the client application then the proxy will forward it to both Origin and Target. However, if the client application can have time periods where only read requests are sent then the client application will not send a heartbeat (because requests are being sent through the connection) but the SECONDARY cluster will not receive any requests during that time period (reads are sent to PRIMARY only) which can cause a disconnect due to an idle connection.

This release enables the ZDM-Proxy to independently send heartbeats on the SECONDARY cluster connection if that connection has not seen any activity over a certain period of time which should fix the issue of disconnects happening when a client application was only sending read requests to the proxy.

Changelog