The description of the Kafka topic cleanup.policy configuration is
A string that is either "delete" or "compact" or both. [...]
I wonder how to set both values. I am not able to get it work. A try to change a configuration this way has not the desired effect:
c:\Progs\kafka_2.12-2.2.0\bin\windows>kafka-configs.bat --zookeeper <...> --entity-type topics --entity-name MyTopic --alter --add-config cleanup.policy=[delete, compact]
Completed Updating config for entity: topic 'MyTopic'.
c:\Progs\kafka_2.12-2.2.0\bin\windows>kafka-configs.bat --zookeeper <...> --entity-type topics --entity-name MyTopic --describe
Configs for topic 'MyTopic' are cleanup.policy=delete,segment.ms=300000,retention.ms=86400000
And this way does not work either:
c:\Progs\kafka_2.12-2.2.0\bin\windows>kafka-configs.bat --zookeeper <...> --entity-type topics --entity-name MyTopic --alter --add-config "cleanup.policy=delete compact"
Error while executing config command with args '--zookeeper <...> --entity-type topics --entity-name MyTopic --alter --add-config cleanup.policy=delete compact'
org.apache.kafka.common.config.ConfigException: Invalid value delete compact for configuration cleanup.policy: String must be one of: compact, delete
at org.apache.kafka.common.config.ConfigDef$ValidString.ensureValid(ConfigDef.java:931)
at org.apache.kafka.common.config.ConfigDef$ValidList.ensureValid(ConfigDef.java:907)
at org.apache.kafka.common.config.ConfigDef.parseValue(ConfigDef.java:480)
at org.apache.kafka.common.config.ConfigDef.parse(ConfigDef.java:464)
at kafka.log.LogConfig$.validate(LogConfig.scala:305)
at kafka.zk.AdminZkClient.validateTopicConfig(AdminZkClient.scala:319)
at kafka.zk.AdminZkClient.changeTopicConfig(AdminZkClient.scala:331)
at kafka.zk.AdminZkClient.changeConfigs(AdminZkClient.scala:268)
at kafka.admin.ConfigCommand$.alterConfig(ConfigCommand.scala:152)
at kafka.admin.ConfigCommand$.processCommandWithZk(ConfigCommand.scala:103)
at kafka.admin.ConfigCommand$.main(ConfigCommand.scala:80)
at kafka.admin.ConfigCommand.main(ConfigCommand.scala)
--describe
). Because of your answer I tried it again and now it worked. Thanks! π€¦ββοΈπ€·ββοΈ β Hen