I'm new to Cassandra but I've seen Thrift examples earlier where I can model the columns as:
id | start_time | end_time | total_value | value + [timeStamp1]
| value + [timeStamp2]...
Is it possible to do this with a single column family with CQL? I can see that I can make a composite key of (id, timestamp) and store the values against the timestamp, and repeat the event level metadata for each row as part of denormalization, but would that still be storing it in one big row?