Class: Fluent::KafkaGroupInput

Inherits:
Input
  • Object
show all
Includes:
Fluent::KafkaPluginUtil::SSLSettings, Fluent::KafkaPluginUtil::SaslSettings
Defined in:
lib/fluent/plugin/in_kafka_group.rb

Defined Under Namespace

Classes: ForShutdown

Constant Summary collapse

BufferError =
if defined?(Fluent::Plugin::Buffer::BufferOverflowError)
  Fluent::Plugin::Buffer::BufferOverflowError
else
  Fluent::BufferQueueLimitError
end

Instance Method Summary collapse

Methods included from Fluent::KafkaPluginUtil::SaslSettings

included

Methods included from Fluent::KafkaPluginUtil::SSLSettings

included, #read_ssl_file

Constructor Details

#initializeKafkaGroupInput

Returns a new instance of KafkaGroupInput.



61
62
63
64
65
66
# File 'lib/fluent/plugin/in_kafka_group.rb', line 61

def initialize
  super
  require 'kafka'

  @time_parser = nil
end

Instance Method Details

#configure(conf) ⇒ Object



78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# File 'lib/fluent/plugin/in_kafka_group.rb', line 78

def configure(conf)
  super

  $log.info "Will watch for topics #{@topics} at brokers " \
            "#{@brokers} and '#{@consumer_group}' group"

  @topics = _config_to_array(@topics)

  if conf['max_wait_ms']
    log.warn "'max_wait_ms' parameter is deprecated. Use second unit 'max_wait_time' instead"
    @max_wait_time = conf['max_wait_ms'].to_i / 1000
  end

  @parser_proc = setup_parser

  @consumer_opts = {:group_id => @consumer_group}
  @consumer_opts[:session_timeout] = @session_timeout if @session_timeout
  @consumer_opts[:offset_commit_interval] = @offset_commit_interval if @offset_commit_interval
  @consumer_opts[:offset_commit_threshold] = @offset_commit_threshold if @offset_commit_threshold

  @fetch_opts = {}
  @fetch_opts[:max_wait_time] = @max_wait_time if @max_wait_time
  @fetch_opts[:min_bytes] = @min_bytes if @min_bytes

  if @use_record_time and @time_format
    @time_parser = Fluent::TextParser::TimeParser.new(@time_format)
  end
end

#emit_events(tag, es) ⇒ Object



199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
# File 'lib/fluent/plugin/in_kafka_group.rb', line 199

def emit_events(tag, es)
  retries = 0
  begin
    router.emit_stream(tag, es)
  rescue BufferError
    raise ForShutdown if @consumer.nil?

    if @retry_emit_limit.nil?
      sleep 1
      retry
    end

    if retries < @retry_emit_limit
      retries += 1
      sleep 1
      retry
    else
      raise RuntimeError, "Exceeds retry_emit_limit"
    end
  end
end

#runObject



156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
# File 'lib/fluent/plugin/in_kafka_group.rb', line 156

def run
  while @consumer
    begin
      @consumer.each_batch(@fetch_opts) { |batch|
        es = Fluent::MultiEventStream.new
        tag = batch.topic
        tag = @add_prefix + "." + tag if @add_prefix
        tag = tag + "." + @add_suffix if @add_suffix

        batch.messages.each { |msg|
          begin
            record = @parser_proc.call(msg)
            if @use_record_time
              if @time_format
                record_time = @time_parser.parse(record['time'])
              else
                record_time = record['time']
              end
            else
              record_time = Fluent::Engine.now
            end
            es.add(record_time, record)
          rescue => e
            log.warn "parser error in #{batch.topic}/#{batch.partition}", :error => e.to_s, :value => msg.value, :offset => msg.offset
            log.debug_backtrace
          end
        }

        unless es.empty?
          emit_events(tag, es)
        end
      }
    rescue ForShutdown
    rescue => e
      log.error "unexpected error during consuming events from kafka. Re-fetch events.", :error => e.to_s
      log.error_backtrace
    end
  end
rescue => e
  log.error "unexpected error during consumer object access", :error => e.to_s
  log.error_backtrace
end

#setup_consumerObject



148
149
150
151
152
153
154
# File 'lib/fluent/plugin/in_kafka_group.rb', line 148

def setup_consumer
  consumer = @kafka.consumer(@consumer_opts)
  @topics.each { |topic|
    consumer.subscribe(topic, start_from_beginning: @start_from_beginning, max_bytes_per_partition: @max_bytes)
  }
  consumer
end

#setup_parserObject



107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# File 'lib/fluent/plugin/in_kafka_group.rb', line 107

def setup_parser
  case @format
  when 'json'
    require 'yajl'
    Proc.new { |msg| Yajl::Parser.parse(msg.value) }
  when 'ltsv'
    require 'ltsv'
    Proc.new { |msg| LTSV.parse(msg.value).first }
  when 'msgpack'
    require 'msgpack'
    Proc.new { |msg| MessagePack.unpack(msg.value) }
  when 'text'
    Proc.new { |msg| {@message_key => msg.value} }
  end
end

#shutdownObject



135
136
137
138
139
140
141
142
143
144
145
146
# File 'lib/fluent/plugin/in_kafka_group.rb', line 135

def shutdown
  # This nil assignment should be guarded by mutex in multithread programming manner.
  # But the situation is very low contention, so we don't use mutex for now.
  # If the problem happens, we will add a guard for consumer.
  consumer = @consumer
  @consumer = nil
  consumer.stop

  @thread.join
  @kafka.close
  super
end

#startObject



123
124
125
126
127
128
129
130
131
132
133
# File 'lib/fluent/plugin/in_kafka_group.rb', line 123

def start
  super

  @kafka = Kafka.new(seed_brokers: @brokers,
                     ssl_ca_cert: read_ssl_file(@ssl_ca_cert),
                     ssl_client_cert: read_ssl_file(@ssl_client_cert),
                     ssl_client_cert_key: read_ssl_file(@ssl_client_cert_key),
                     sasl_gssapi_principal: @principal, sasl_gssapi_keytab: @keytab)
  @consumer = setup_consumer
  @thread = Thread.new(&method(:run))
end