I need to capture time-series sensor data in Cassandra. The best practices for handling time-series data in DynamoDB is as follow:
- Create one table per time period, provisioned with write capacity less than 1,000 write capacity units (WCUs).
- Before the end of each time period, prebuild the table for the next period.
- As soon as a table is no longer being written to, reduce its provisioned write capacity. Also reduce the provisioned read capacity of earlier tables as they age, and archive or delete the ones whose contents will rarely or never be needed.
Now I am wondering how I can implement the same concept in Cassandra! Is there any way to manually configure write/read capacity in Cassandra as well?