rocketmq 查看topic的命令
时间: 2023-11-06 12:05:59 浏览: 478
1. 查看所有topic列表命令:
```
./mqadmin topicList -n namesrvAddr
```
2. 查看某个topic的信息命令:
```
./mqadmin topicStatus -t topicName -n namesrvAddr
```
3. 查看某个topic的路由信息命令:
```
./mqadmin topicRoute -t topicName -n namesrvAddr
```
4. 查看某个consumer group消费某个topic的情况命令:
```
./mqadmin consumerProgress -g groupName -t topicName -n namesrvAddr
```
相关问题
java rocketmq查看topic
要查看Java RocketMQ中的Topic,可以使用以下命令:
```java
List<String> topics = adminExt.fetchAllTopicList();
for (String topic : topics) {
System.out.println(topic);
}
```
这将打印出所有的Topic列表。如果要查看特定Topic的详细信息,可以使用以下命令:
```java
TopicStatsTable topicStatsTable = adminExt.examineTopicStats(topic);
```
这将返回一个包含有关特定Topic的统计信息的TopicStatsTable对象。您可以使用此对象来获取有关Topic的各种信息,例如生产者和消费者的数量,消息的总数和各种指标。
rocketmq和topic有关的命令
1. 创建主题
```
./mqadmin updateTopic -n <nameserverAddr> -c <clusterName> -t <topicName> -r <readQueueNum> -w <writeQueueNum> -p <perm>
```
2. 删除主题
```
./mqadmin deleteTopic -n <nameserverAddr> -c <clusterName> -t <topicName>
```
3. 查看主题列表
```
./mqadmin topicList -n <nameserverAddr>
```
4. 查看主题信息
```
./mqadmin topicStatus -n <nameserverAddr> -t <topicName>
```
5. 查看主题路由信息
```
./mqadmin topicRoute -n <nameserverAddr> -t <topicName>
```
6. 查看主题配置
```
./mqadmin getTopicConfig -n <nameserverAddr> -t <topicName>
```
7. 更新主题配置
```
./mqadmin updateTopicConfig -n <nameserverAddr> -c <clusterName> -t <topicName> -r <readQueueNum> -w <writeQueueNum> -p <perm>
```
8. 查看主题消费组
```
./mqadmin queryTopicConsumeByWho -n <nameserverAddr> -t <topicName>
```
9. 查看主题消息
```
./mqadmin queryMsgById -n <nameserverAddr> -i <msgId>
./mqadmin queryMsgByKey -n <nameserverAddr> -t <topicName> -k <msgKey> -b <beginTime> -e <endTime> -f <flag> -s <maxNum>
./mqadmin queryMsgByUniqueKey -n <nameserverAddr> -t <topicName> -u <uniqueKey>
```
10. 删除主题消息
```
./mqadmin deleteMsgByMsgId -n <nameserverAddr> -i <msgId>
./mqadmin deleteMsgByMsgKey -n <nameserverAddr> -t <topicName> -k <msgKey>
./mqadmin deleteMsgByUniqueKey -n <nameserverAddr> -t <topicName> -u <uniqueKey>
```
阅读全文