com.datastax.driver.core.exceptions.InvalidQueryException: unconfigured table schema_keyspaces

前端 未结 2 753
悲哀的现实
悲哀的现实 2020-12-03 07:02

I am trying to configure spring data with cassandra. But I am getting bellow error , when my app is deploying in tomcat.

When I check the connection, it is available

2条回答
  •  有刺的猬
    2020-12-03 07:52

    It looks like you are using an older version of the driver with Cassandra 3.0. Cassandra 3.0 changed its internal schema metadata representation, and only the latest drivers can parse this metadata.

    Use Java Cassandra driver 3.0.0-alpha5 to connect to Cassandra 3.0.

提交回复
热议问题