text 卡夫卡主题一代

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 卡夫卡主题一代相关的知识,希望对你有一定的参考价值。

# starting server

bin/zookeeper-server-start.sh config/zookeeper.properties
bin/kafka-server-start.sh config/server.properties

To start in background
nohup bin/zookeeper-server-start.sh config/zookeeper.properties &
nohup bin/kafka-server-start.sh config/server.properties &

# deleting topics

bin/kafka-topics.sh --zookeeper localhost:2181 --delete --topic test
bin/kafka-topics.sh --zookeeper localhost:2181 --delete --topic response_topic
bin/kafka-topics.sh --zookeeper localhost:2181 --delete --topic 

# creating a topic

bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic post_book
bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic response_topic

# listing topics

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

# Insufficient memory for the Java Runtime Environment to continue

export KAFKA_HEAP_OPTS="-Xmx256M -Xms128M"

# Kill process on a port

sudo kill `sudo lsof -t -i:9001`

以上是关于text 卡夫卡主题一代的主要内容,如果未能解决你的问题,请参考以下文章

卡夫卡主题——我应该多点还是少点?

卡夫卡多个生产者写同一主题?

每小时或每天都有一个卡夫卡主题是典型的吗?

处理卡夫卡中具有依赖关系的数据时的最佳实践?

卡夫卡动物园管理员的目的

卡夫卡流加入