You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tubemq.apache.org by "Guocheng Zhang (Jira)" <ji...@apache.org> on 2020/12/17 03:38:00 UTC

[jira] [Closed] (TUBEMQ-454) TubemqSourceFunction class prints too many logs problem

     [ https://issues.apache.org/jira/browse/TUBEMQ-454?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Guocheng Zhang closed TUBEMQ-454.
---------------------------------
    Resolution: Fixed

> TubemqSourceFunction class prints too many logs problem
> -------------------------------------------------------
>
>                 Key: TUBEMQ-454
>                 URL: https://issues.apache.org/jira/browse/TUBEMQ-454
>             Project: Apache TubeMQ
>          Issue Type: Bug
>            Reporter: xianle cao
>            Assignee: Guocheng Zhang
>            Priority: Major
>
> module:
> tubemq-connector-flink
> class:
> TubemqSourceFunction
>  
> ```
> Instant lastConsumeInstant = Instant.now();
>  while (running) {
>  ConsumerResult consumeResult = messagePullConsumer.getMessage();
>  if (!consumeResult.isSuccess()) {
> ...
>  Duration idleTime =
>  Duration.between(lastConsumeInstant, Instant.now());
>  if (idleTime.compareTo(maxIdleTime) > 0) {
> LOG.info("Mark this source as temporarily idle.");
>  ctx.markAsTemporarilyIdle();
>  }
>  continue;
>  }
> ...
> }
> possible problems:
> print too much log content: Mark this source as temporarily idle.
> possible solution:
> remove the log and print this line of code



--
This message was sent by Atlassian Jira
(v8.3.4#803005)