fluent-plugins-nursery / fluent-plugin-cloudwatch-logs

CloudWatch Logs Plugin for Fluentd
MIT License
201 stars 141 forks source link

Fix high cpu usage while waiting next fetch time #224

Closed kenhys closed 3 years ago

kenhys commented 3 years ago

Closes: #221

Reported by tma-prismo

Before:

  until @finished
    if Time.now > @next_fetch_time
      ...
      sleep 1
    end
  end

After:

  until @finished
    if Time.now > @next_fetch_time
      ...
    end
    sleep 1
  end