mingang.he bcc8fb3014 Fix config for calling NewSyncProducer() 7 лет назад
..
.gitignore f4f1c42e84 Add a kaka-console-producer application. 9 лет назад
README.md 01d71fed9e Fix tool installation instructions in READMEs 9 лет назад
kafka-console-producer.go bcc8fb3014 Fix config for calling NewSyncProducer() 7 лет назад

README.md

kafka-console-producer

A simple command line tool to produce a single message to Kafka.

Installation

go get github.com/Shopify/sarama/tools/kafka-console-producer

Usage

# Minimum invocation
kafka-console-producer -topic=test -value=value -brokers=kafka1:9092

# It will pick up a KAFKA_PEERS environment variable
export KAFKA_PEERS=kafka1:9092,kafka2:9092,kafka3:9092
kafka-console-producer -topic=test -value=value

# It will read the value from stdin by using pipes
echo "hello world" | kafka-console-producer -topic=test

# Specify a key:
echo "hello world" | kafka-console-producer -topic=test -key=key

# Partitioning: by default, kafka-console-producer will partition as follows:
# - manual partitioning if a -partition is provided
# - hash partitioning by key if a -key is provided
# - random partioning otherwise.
#
# You can override this using the -partitioner argument:
echo "hello world" | kafka-console-producer -topic=test -key=key -partitioner=random

# Display all command line options
kafka-console-producer -help