Skip to content

Instantly share code, notes, and snippets.

View ursuad's full-sized avatar

Adrian Ursu ursuad

  • Advance Leap Ltd
  • London, United Kindom
View GitHub Profile
# Source: https://flowerinthenight.com/blog/2019/02/05/golang-cobra-klog
package main
import (
goflag "flag"
"github.com/spf13/cobra"
flag "github.com/spf13/pflag"
"k8s.io/klog"
)
@ursuad
ursuad / kafka-cheat-sheet.md
Last active March 14, 2024 10:32
Quick command reference for Apache Kafka

Kafka Topics

List existing topics

bin/kafka-topics.sh --zookeeper localhost:2181 --list

Describe a topic

bin/kafka-topics.sh --zookeeper localhost:2181 --describe --topic mytopic

Purge a topic

bin/kafka-topics.sh --zookeeper localhost:2181 --alter --topic mytopic --config retention.ms=1000

... wait a minute ...