Replies: 1 comment
-
Solved by #8616. |
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
-
Hello,
The Cassandra module is still using Datastax Java driver 3.10 but when using it with the Cassandra 5.0 images (tested here with the version 5.0.0-alpha2), some errors are logged when the new
vector
CQL type is used because it is not supported by older versions of the driver:These errors are not blocking, but it could lead to polluting the logs unnecessarily, especially if the initialization script uses a lot of Cassandra 5.0 features.
This could be fixed by upgrading the driver to the latest version 4.17.
This implies to remove the deprecated methods
getCluster()
from theCassandraContainer
class and update the implementation of theDatabaseDelegate
.What do you think about it?
Edit: Cassandra 3.x EoL will happen at the Cassandra 5.0 GA(source), scheduled for the EoY 2023. So, IMHO, it sounds ok to migrate to a most recent version of the driver (supporting both Cassandra 4 and 5) and remove methods specific to Cassandra driver 3.x.
Beta Was this translation helpful? Give feedback.
All reactions