Skip to content

Kafka Streams runner: lifecycle management for runner-created topics #39566

Description

@junaiddshaukat

Summary

The Kafka Streams runner creates the internal topics a pipeline needs implicitly, when the job starts (#39546).

It may be better to make that explicit and give the topics a lifecycle, so an operator can create them ahead of time and clean them up afterwards:

# just create topics
java -cp ... my.class --runner=KafkaStreams [... other opts ...] --create-topics
# run
java -cp ... my.class --runner=KafkaStreams [... other opts ...]
# delete runner-created topics
java -cp ... my.class --runner=KafkaStreams [... other opts ...] --delete-topics

Part of #18479.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions