I am storing data in Cassandra DB based on some time intervals like 1hour, 1day, 1week, 1month and 1year, I have to set the ttl
using those slots like follows
1hour, 1day and 1 week - 14days (1209600 seconds)
1month - 1month+1week ( 3297546 seconds)
1year - 1year+1week (32161752 seconds)
I found it Using using = QueryBuilder.ttl(int);
session.execute( insert.using(using) ).wasApplied();
my doubt is, will it accept those huge values?