2

There is one table (or called column family) in Cassandra. I want to know how many records of this table were inserted or updated since a given timestamp. How to do it?

Adrian Cid Almaguer
  • 7,815
  • 13
  • 41
  • 63
Finix
  • 131
  • 14

1 Answers1

2

Your best option is to try writetime(column_name). That way you will get the write times of particular columns. You won't get, however, write times of already deleted columns. It's far from what you want, but that's the only possibility.

piotrwest
  • 2,098
  • 23
  • 35