• kafka常用指令


    查看消费组详情:
    ./bin/kafka-consumer-groups.sh --bootstrap-server localhost:9092 --describe --group test-consumer-group
    
    查看topic详情:
    ./bin/kafka-topics.sh --topic mytopic --describe --bootstrap-server localhost:9092
    
    创建topic:
    bin/kafka-topics.sh --zookeeper localhost:2181 --create --topic mytopic --partitions 10 --replication-factor 3
    
    查看topic详情:
    bin/kafka-topics.sh --zookeeper localhost:2181 --desc --topic mytopic 
    
    修改partition数量:
    bin/kafka-topics.sh --zookeeper localhost:2181 --alter --topic mytopic --partitions 10
    
    删除topic:
    server.properties ==> delete.topic.enable=true
    bin/kafka-topics.sh --zookeeper localhost:2181 --delete --topic mytopic 
    
    创建终端生产者:
    bin/kafka-console-producer.sh --broker-list localhost:9092 --topic mytopic 
    .inkafka-console-producer.bat --bootstrap-server localhost:9092 --topic my-topic
    
    创建终端消费者:
    bin/kafka-console-consumer.sh --zookeeper localhost:2181 --topic mytopic 
    
  • 相关阅读:
    excel处理经纬度
    Bootstrap:弹出框和提示框效果以及代码展示
    c# 多张图片合成一张图片
    webapi------宿主程序
    git安装完设置成中文
    邮件帮助类
    IISHelper操作iis
    删除数组中的重复项
    SQL 、LINQ日前比较
    PostAsync与GetAsync
  • 原文地址:https://www.cnblogs.com/cuiyuanhao/p/13410418.html
Copyright © 2020-2023  润新知