Deleting data from compacted topics
This page describes a tutorial for deleting data in compacted topics from SQL Studio.
Create compacted topic
CREATE TABLE user_calls (
_key.user_id string
, user.name string
, user.phone_number string
, user.address.door string
, user.address.street string
)
FORMAT(AVRO,AVRO)
PROPERTIES(
cleanup.policy=compact
, min.cleanable.dirty.ratio=0.01
, segment.ms=100
, retention.ms=100
, segment.bytes=400
);Deleting data using Processors
Last updated
Was this helpful?

