summaryrefslogtreecommitdiff
path: root/lib/oxidized/jobs.rb
blob: 0511b493670022d33aa2e81cb482f2f15cbfdd0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
module Oxidized
  class Jobs < Array
    attr_accessor :interval, :max, :want
    def initialize max, interval, nodes
      @max       = max
      @interval  = interval
      @nodes     = nodes
      @durations = Array.new(@nodes.size, 5) # guess that nodes take 5s
      new_count
      super()
    end
    def duration last
      @durations.push(last).shift
      @duration = @durations.inject(:+).to_f / @nodes.size #rolling average
      new_count
    end
    def new_count
      @want = ((@nodes.size * @duration) / @interval).to_i
      @want = 1 if @want < 1
      @want = @nodes.size if @want > @nodes.size
      @want = @max if @want > @max
    end
    def add_job
      @want += 1
    end
  end
end