I'm using Spring Boot 1.5.1.RELEASE with spring-boot-starter-data-cassandra.
I'm running into an issue where I'm using CassandraOperations.insert and it is causing a bunch of cell tombstones. This appears to be caused by: https://jira.spring.io/browse/DATACASS-182. Since Spring Data now inserts an actual null for null values, that causes cell tombstones. I haven't found any way to tell Spring Data to not do this. Is there a configuration or something where I can say "for this insert, do not insert actual null values"?
nullor the cell wasn't written at all. Is there any case in which you would want to create cell tombstones on insert? - mp911de