【Cassandra】01_表的TTL

该博客探讨了在 Cassandra 数据库中如何修改表的默认时间到存活(TTL)属性,并通过示例展示了修改 TTL 后对已存在数据和新插入数据的不同影响。文章指出,TTL 的更改仅对修改后插入的数据生效,不会影响之前已存在的记录。实验结果显示,更新 TTL 不会改变已插入数据的原有 TTL 设置,强调了 TTL 设置的时间点对于数据生命周期管理的重要性。
摘要由CSDN通过智能技术生成
  1. 修改表的TTL,指定的数值是秒
drop table if exists test_ttl.empty_table;
create table test_ttl.empty_table
(
    id   int primary key,
    name text
);

-- 单位秒
alter table test_ttl.empty_table with default_time_to_live= 120;

insert into test_ttl.empty_table(id, name) values(1,'111111');
insert into test_ttl.empty_table(id, name) values(2,'222222');
insert into test_ttl.empty_table(id, name) values(3,'333333');



alter table test_ttl.empty_table with default_time_to_live= 60;
insert into test_ttl.empty_table(id, name) values(4,'44444');
insert into test_ttl.empty_table(id, name) values(5,'55555');
insert into test_ttl.empty_table(id, name) values(6,'66666');

-- 结论:第一次设置ttl=120,插入数据后,这批数据的ttl是120
--  当修改表的ttl,在继续插入4,5,6行数据。此时1,2,3行数据的ttl还是继续执行120,而4,5,6行数据会变成60。

-- 最新一次的修改的ttl,只对其后插入的数据起作用。


select id,name,ttl(name) from test_ttl.empty_table where id > 0 and id < 7 allow filtering ;






-- ------------------------
--

drop table if exists test_ttl.existsdata_table;
create table test_ttl.existsdata_table
(
    id   int primary key,
    name text
);

insert into test_ttl.existsdata_table(id, name) values(1,'111111');
insert into test_ttl.existsdata_table(id, name) values(2,'222222');
insert into test_ttl.existsdata_table(id, name) values(3,'333333');

alter table test_ttl.existsdata_table with default_time_to_live= 120;


insert into test_ttl.existsdata_table(id, name) values(4,'4444');
insert into test_ttl.existsdata_table(id, name) values(5,'55555');
insert into test_ttl.existsdata_table(id, name) values(6,'66666');



alter table test_ttl.existsdata_table with default_time_to_live= 60;
insert into test_ttl.existsdata_table(id, name) values(7,'77777');
insert into test_ttl.existsdata_table(id, name) values(8,'88888');
insert into test_ttl.existsdata_table(id, name) values(9,'99999');

select id,name,ttl(name) from test_ttl.existsdata_table where id > 0 and id < 10 allow filtering ;






评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值