rocketmq
rocketmq copied to clipboard
[Feature] TimerMessageStore#getDequeueTps optimization
Is Your Feature Request Related to a Problem?
public float getDequeueTps() {
return perfCounterTicks.getCounter("dequeue_put").getLastTps();
}
this may can change to DEQUEUE_PUT
Describe the Solution You'd Like
public float getDequeueTps() {
return perfCounterTicks.getCounter(DEQUEUE_PUT).getLastTps();
}
Describe Alternatives You've Considered
change to DEQUEUE_PUT
Additional Context
No response