Re: Repair daily refreshed table

2018-08-19 Thread Maxim Parkachov
Hi Raul, I cannot afford delete and then load as this will create downtime for the record, that's why I'm upserting with TTL today()+7days as I mentioted in my original question. And at the moment I don't have an issue either with loading nor with access times. My question is should I repair such

Number of values in IN clause for clustering column

2018-08-19 Thread Vova Shelgunov
Hi All, Let's imagine that I have the following schema: CREATE TABLE IF NOT EXISTS history_data ( discriminator uuid, a bigint, b bigint, date date, data custom_type, PRIMARY KEY ((discriminator, a, b), date) ) WITH CLUSTERING ORDER BY (date DESC); I want to delete the da