sh bin/kafka-topics.sh --bootstrap-server xxxxxx:9092 --list --exclude-internal --topic "test_create_.*" 相关可选参数 参数 描述 例子 --exclude-internal 排除kafka内部topic,比如__consumer_offsets-* --exclude-internal --topic 可以正则表达式进行匹配,展示topic名称 --topic 2.ConfigCommand Confi...
[root@aa bin]# ./kafka-topics.sh --describe --zookeeper localhost:2181 --topic zyl Topic:zyl PartitionCount:1 ReplicationFactor:1 Configs: Topic: zyl Partition: 0 Leader: 0 Replicas: 0 Isr: 0 启动生产者并发送消息 ./kafka-console-producer.sh --broker-list localhost:9092 --topic my-repl...
--command-config <String: command 文件路径> 用来配置客户端Admin Client启动配置,只在--bootstrap-server 同时使用时候生效; 例如:设置请求的超时时间 --command-config config/producer.proterties ; 然后在文件中配置 request.timeout.ms=300000 1.2.删除Topic bin/kafka-topics.sh --bootstrap-server localhost...
the list of configurations under the--config option). Not supported with the--bootstrap-server option.--describe List detailsforthe given topics.--disable-rack-aware Disable rack aware replica assignment--exclude-internal exclude internal topics when running list or describe command. The internal to...
1.TopicCommand 1.1.Topic创建 bin/kafka-topics.sh --create --bootstrap-server localhost:9092 --replication-factor 3 --partitions 3 --topic test 相关可选参数 参数 描述 例子 --bootstrap-server 指定kafka服务 指定连接到的kafka服务; 如果有这个参数,则 --zookeeper可以不需要 –bootstrap-server loca...
sh bin/kafka-topics.sh --bootstrap-server xxxxxx:9092 --list --exclude-internal --topic "test_create_.*" 相关可选参数 2.ConfigCommand Config相关操作; 动态配置可以覆盖默认的静态配置; 2.1 查询配置 展示关于Topic的动静态配置 1.查询单个Topic配置(只列举动态配置) ...
sh bin/kafka-topics.sh --bootstrap-server xxxxxx:9092 --list --exclude-internal --topic "test_create_.*" 相关可选参数 参数 描述 例子 --exclude-internal 排除kafka内部topic,比如__consumer_offsets-* --exclude-internal --topic 可以正则表达式进行匹配,展示topic名称 --topic 2.ConfigCommand Confi...
1.TopicCommand 1.1.Topic创建 bin/kafka-topics.sh --create --bootstrap-server localhost:9092 --replication-factor 3 --partitions 3 --topic test 相关可选参数 1.2.删除Topic bin/kafka-topics.sh --bootstrap-server localhost:9092 --delete --topic test ...
/opt/kafka/bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic discoveryTopic How to view messages of a topic in Kafka? Command: export KAFKA_OPTS=-Djava.security.auth.login.config=/opt/kafka/config/kafka_client_jaas.conf ...
9092 --describe --group group-1-log --command-config config/sasl.properties # 该命令是查看 group-1-log 消费组的情况,可以根据实际情况修改 # 如果是查看当前 kafka 中的所有消费组,使用以下命令: kafka-consumer-groups.sh --bootstrap-server localhost:9092 --list --command-config config/sasl....