Sha256: e5767b2c9e27cf00a280ec806091f9a115981f5627658dd7e57e1f8ed64b74eb

Contents?: true

Size: 1.4 KB

Versions: 2

Compression:

Stored size: 1.4 KB

Contents

module Sneakers
  module WorkerGroup
    @workers = []

    def initialize
      @stop_flag = ServerEngine::BlockingFlag.new
    end

    def before_fork
      fbefore = Sneakers::CONFIG[:hooks][:before_fork]
      fbefore.call if fbefore
    end

    def after_fork # note! this is not Serverengine#after_start, this is ours!
      fafter = Sneakers::CONFIG[:hooks][:after_fork]
      fafter.call if fafter
    end

    def run
      after_fork

      # Allocate single thread pool if share_threads is set. This improves load balancing
      # when used with many workers.
      pool = config[:share_threads] ? Thread.pool(config[:threads]) : nil

      worker_classes = config[:worker_classes]

      if worker_classes.respond_to? :call
        worker_classes = worker_classes.call
      end

      @workers = worker_classes.map{|w| w.new(nil, pool) }
      # if more than one worker this should be per worker
      # accumulate clients and consumers as well
      @workers.each do |worker|
        worker.run
      end
      # end per worker
      #
      until @stop_flag.wait_for_set(Sneakers::CONFIG[:amqp_heartbeat])
        Sneakers.logger.debug("Heartbeat: running threads [#{Thread.list.count}]")
        # report aggregated stats?
      end

    end

    def stop
      Sneakers.logger.info("Shutting down workers")
      @workers.each do |worker|
        worker.stop
      end
      @stop_flag.set!
    end

  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
sneakers-2.5.0 lib/sneakers/workergroup.rb
sneakers-2.4.0 lib/sneakers/workergroup.rb