kafka命令行操作

 创建:
     单节点创建:
        kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic test
     多节点创建:
        kafka-topics.sh --create --zookeeper host1:2181,host2:2181,host3:2181 --replication-factor 3 --partitions 3 --topic test
 查看topic:
        kafka-topics.sh --list --zookeeper 127.0.0.1:2181
 删除topic:
        kafka-topics.sh --zookeeper host1:2181 --delete --topic test
 异常提示1:
        Topic test is marked for deletion.
        Note: This will have no impact if delete.topic.enable is not set to true.
        这边是说,你的Topic已经被标记为待删除的Topic,这个是kafka的软删除操作标志,其实这个Topic并没有被删除。如果要实现删除需要打开删除开关,打开之后系统会自动删除被标记删除的Topic。
    打开的方法:
        设置server.properties文件内的“delete.topic.enable=true”,并且重启Kafka就可以了
发送消息:
   kafka-console-producer.sh --broker-list host1:9092 --topic test
   //输入内容
   .............................
消费消息:
  kafka-console-consumer.sh --zookeeper 127.0.0.1:2181 --topic test --from-beginning
  //内容
  ..........................................

你可能感兴趣的:(Kafka)