Skip to content

Commit

Permalink
consume request count exceeds threshold {} placeholder no parameter fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
iamgd67 committed Mar 26, 2024
1 parent 0525707 commit aea1d33
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -902,7 +902,7 @@ public void run() {
scheduledThreadPoolExecutor.schedule(this, PULL_TIME_DELAY_MILLS_WHEN_CACHE_FLOW_CONTROL, TimeUnit.MILLISECONDS);
if ((consumeRequestFlowControlTimes++ % 1000) == 0) {
log.warn("The consume request count exceeds threshold {}, so do flow control, consume request count={}, flowControlTimes={}",
(int)Math.ceil((double)defaultLitePullConsumer.getPullThresholdForAll()/defaultLitePullConsumer.getPullBatchSize()),
(int)Math.ceil((double)defaultLitePullConsumer.getPullThresholdForAll() / defaultLitePullConsumer.getPullBatchSize()),
consumeRequestCache.size(), consumeRequestFlowControlTimes);
}
return;
Expand Down

0 comments on commit aea1d33

Please sign in to comment.