Materialize Documentation
s
Join the Community github/materialize

DROP SINK

DROP SINK removes a sink from your Materialize instances.

Dropping a Kafka sink doesn’t drop the corresponding topic. Recreating the sink will result in a new Kafka topic. For more information, see the Kafka documentation.

Syntax

DROP SINK IF EXISTS sink_name
Field Use
sink_name The sink you want to drop. You can find available sink names through SHOW SINKS.

Examples

SHOW SINKS;
my_sink
DROP SINK my_sink;
DROP SINK