Top "Spring-data-cassandra" questions

Spring Data for Cassandra is part of Spring Data project which provides a familiar and consistent Spring-based programming model for new datastores while retaining store-specific features and capabilities.

spring-data-cassandra set consistency level

I am using spring-data-cassandra (1.3.1.RELEASE) to connect to a cassandra database. Is there a way to change the consistency level …

java spring-data-cassandra
bootstrap.yml not loading for Spring Boot 2

I'm having a similar problem to this thread(which has not been resolved). I have a Spring Boot 2 App and …

spring spring-boot spring-webflux spring-data-cassandra
Spark with Cassandra input/output

Picture the following senario: A Spark application (Java implementation) is using Cassandra database to load, convert to RDD and process …

java cassandra apache-spark spring-data-cassandra
How create table with spring data cassandara?

I have created my own repository like that: public interface MyRepository extends TypedIdCassandraRepository<MyEntity, String> { } So the question …

java spring cassandra spring-data-cassandra
User Defined Type with spring-data-cassandra

I am looking to create models as below, how can I use user defined types in spring-data-cassandra? { email: "test@example.…

spring spring-data-cassandra
Spring data Cassandra 2.0 Select BLOB column returns incorrect ByteBuffer data

Context: Spring data cassandra official 1.0.2.RELEASE from Maven Central repo, CQL3, cassandra 2.0, datastax driver 2.0.4 Background: The cassandra blob data type …

cassandra blob bytebuffer spring-data-cassandra
java.lang.IllegalArgumentException:Either use @Param on all parameters except Pageable and Sort typed once, or none at all

I'm using Spring Data Cassandra.I'm getting exception when i pass multiple parameters to the repository method. Can anyone help …

spring spring-boot cassandra spring-data-cassandra