Sha256: a4954d8e5bf4a7ecfbdc1315223c21c753aa5588e5945090d5dc682cc7dfe256

Contents?: true

Size: 1.01 KB

Versions: 7

Compression:

Stored size: 1.01 KB

Contents

# frozen_string_literal: true

module Pitchfork
  module ReforkCondition
    @backoff_delay = 10.0

    class << self
      attr_accessor :backoff_delay
    end

    class RequestsCount
      def initialize(request_counts)
        @limits = request_counts
        @backoff_until = nil
      end

      def met?(worker, logger)
        if limit = @limits.fetch(worker.generation) { @limits.last }
          if worker.requests_count >= limit
            return false if backoff?

            logger.info("worker=#{worker.nr} pid=#{worker.pid} processed #{worker.requests_count} requests, triggering a refork")
            return true
          end
        end
        false
      end

      def backoff?
        return false if @backoff_until.nil?

        if @backoff_until > Pitchfork.time_now
          true
        else
          @backoff_until = nil
          false
        end
      end

      def backoff!(delay = ReforkCondition.backoff_delay)
        @backoff_until = Pitchfork.time_now + delay
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
pitchfork-0.16.0 lib/pitchfork/refork_condition.rb
pitchfork-0.15.0 lib/pitchfork/refork_condition.rb
pitchfork-0.14.0 lib/pitchfork/refork_condition.rb
pitchfork-0.13.0 lib/pitchfork/refork_condition.rb
pitchfork-0.12.0 lib/pitchfork/refork_condition.rb
pitchfork-0.11.1 lib/pitchfork/refork_condition.rb
pitchfork-0.11.0 lib/pitchfork/refork_condition.rb