Class: Racecar::Runner
- Inherits:
-
Object
- Object
- Racecar::Runner
- Defined in:
- lib/racecar/runner.rb
Instance Attribute Summary collapse
-
#config ⇒ Object
readonly
Returns the value of attribute config.
-
#logger ⇒ Object
readonly
Returns the value of attribute logger.
-
#processor ⇒ Object
readonly
Returns the value of attribute processor.
Instance Method Summary collapse
-
#initialize(processor, config:, logger:, instrumenter: NullInstrumenter) ⇒ Runner
constructor
A new instance of Runner.
- #run ⇒ Object
- #setup_pauses ⇒ Object
- #stop ⇒ Object
Constructor Details
#initialize(processor, config:, logger:, instrumenter: NullInstrumenter) ⇒ Runner
Returns a new instance of Runner.
14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/racecar/runner.rb', line 14 def initialize(processor, config:, logger:, instrumenter: NullInstrumenter) @processor, @config, @logger = processor, config, logger @instrumenter = instrumenter @stop_requested = false Rdkafka::Config.logger = logger if processor.respond_to?(:statistics_callback) Rdkafka::Config.statistics_callback = processor.method(:statistics_callback).to_proc end setup_pauses end |
Instance Attribute Details
#config ⇒ Object (readonly)
Returns the value of attribute config.
12 13 14 |
# File 'lib/racecar/runner.rb', line 12 def config @config end |
#logger ⇒ Object (readonly)
Returns the value of attribute logger.
12 13 14 |
# File 'lib/racecar/runner.rb', line 12 def logger @logger end |
#processor ⇒ Object (readonly)
Returns the value of attribute processor.
12 13 14 |
# File 'lib/racecar/runner.rb', line 12 def processor @processor end |
Instance Method Details
#run ⇒ Object
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
# File 'lib/racecar/runner.rb', line 49 def run install_signal_handlers @stop_requested = false # Configure the consumer with a producer so it can produce messages and # with a consumer so that it can support advanced use-cases. processor.configure( producer: producer, consumer: consumer, instrumenter: @instrumenter, config: @config, ) instrumentation_payload = { consumer_class: processor.class.to_s, consumer_set: consumer } # Main loop loop do break if @stop_requested resume_paused_partitions @instrumenter.instrument("start_main_loop", instrumentation_payload) @instrumenter.instrument("main_loop", instrumentation_payload) do case process_method when :batch then msg_per_part = consumer.batch_poll(config.max_wait_time_ms).group_by(&:partition) msg_per_part.each_value do || process_batch() end when :single then = consumer.poll(config.max_wait_time_ms) process() if end end end logger.info "Gracefully shutting down" begin processor.deliver! processor.teardown consumer.commit ensure @instrumenter.instrument('leave_group') do consumer.close end end ensure producer.close Racecar::Datadog.close if config.datadog_enabled @instrumenter.instrument("shut_down", instrumentation_payload || {}) end |
#setup_pauses ⇒ Object
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'lib/racecar/runner.rb', line 27 def setup_pauses timeout = if config.pause_timeout == -1 nil elsif config.pause_timeout == 0 # no op, handled elsewhere elsif config.pause_timeout > 0 config.pause_timeout else raise ArgumentError, "Invalid value for pause_timeout: must be integer greater or equal -1" end @pauses = Hash.new {|h, k| h[k] = Hash.new {|h2, k2| h2[k2] = ::Racecar::Pause.new( timeout: timeout, max_timeout: config.max_pause_timeout, exponential_backoff: config.pause_with_exponential_backoff ) } } end |
#stop ⇒ Object
103 104 105 |
# File 'lib/racecar/runner.rb', line 103 def stop @stop_requested = true end |