Skip to content

Instantly share code, notes, and snippets.

View AndersonChoi's full-sized avatar
🇰🇷
안녕하세요

AndersonChoi AndersonChoi

🇰🇷
안녕하세요
View GitHub Profile
@AndersonChoi
AndersonChoi / README-Template.md
Created January 12, 2025 05:39 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@AndersonChoi
AndersonChoi / kafka-cheat-sheet.md
Last active September 21, 2018 06:17 — forked from ursuad/kafka-cheat-sheet.md
Quick command reference for Apache Kafka

Kafka 2.0.0 Cheat Sheet

Kafka Topics

List existing topics

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

Describe a topic

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

Purge a topic

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