KAFKA常用命令
一、KAFKA常用命令
1.1kafka造数
示例:给topic为 ids-test 造数
./kafka-console-producer.sh --broker-list ip:9092 --topic ids-test
1.2kafla抓包
1.2.1实时查看kafka数据
./kafka-console-consumer.sh --bootstrap-server ip:9092 --topic topic的名字
1.2.2查看kafka历史数据
./kafka-console-consumer.sh --bootstrap-server ip:9092 --topic topic的名字 --from-beginning
1.2.3查看kafka中带有某个ip的历史数据
./kafka-console-consumer.sh --bootstrap-server ip:9092 --topic topic的名字 --from-beginning | grep IP地址
1.2.4将kafka数据存入文件中
./kafka-console-consumer.sh --bootstrap-server ip:9092 --topic topic名字 > /tmp/1.log
如果针对多次输入内容,希望添加到同一个文件内,需要将>修改为>>表示追加,但在不熟悉的时候不建议使用;