nsq管理界面有很多的字段,都是什么含义呢?
字段名 | 含义 |
---|---|
Depth | Current sum of messages in memory on disk (i.e. the “backlog” of messages pending delivery) 当前消息数:内存和硬盘转存的消息数,即当前的积压量 |
Memory + Disk | 内存和硬盘分别积压的消息数 |
In-Flight | Current count of messages delivered but not yet finished (FIN), requeued (REQ) or timed out 当前未完成的消息数:包括发送但未返回FIN/重新入队列REQ/超时TIMEOUT 三种消息数之和,代表已经投递还未消费掉的消息 |
Deferred | Current count of messages that were requeued and explicitly deferred which are not yet available for delivery. 重新入队的延迟消息数,指还未发布的重入队消息数量,即未消费的定时(延时)消息数 |
Requeued</ |