kafka设置topic过期时间

1.第一种方式在配置文件设置全局策略

修改 server.propertie

log.retention.hours=72
log.cleanup.policy=delete

2.对某个topic设置过期时间

./kafka-configs.sh --zookeeper xxx:2181 --alter --entity-name mytopic \
--entity-type topics --add-config retention.ms=86400000
#retention.ms=86400000单位毫秒

3.查看过期配置

./kafka-configs.sh --zookeeper xxx:2181 --describe --entity-name mytopic \
--entity-type topics

4.删除某个topic下的数据

./kafka-topics.sh --zookeeper xxx:2181 --alter --topic mytopic \
--config cleanup.policy=delete

你可能感兴趣的:(kafka,linux)