Class: Fluent::SQLInput::StateStore

Inherits:
Object
  • Object
show all
Defined in:
lib/fluent/plugin/in_sql.rb

Instance Method Summary collapse

Constructor Details

#initialize(path) ⇒ StateStore

Returns a new instance of StateStore.



275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
# File 'lib/fluent/plugin/in_sql.rb', line 275

def initialize(path)
  require 'yaml'

  @path = path
  if File.exists?(@path)
    @data = YAML.load_file(@path)
    if @data == false || @data == []
      # this happens if an users created an empty file accidentally
      @data = {}
    elsif !@data.is_a?(Hash)
      raise "state_file on #{@path.inspect} is invalid"
    end
  else
    @data = {}
  end
end

Instance Method Details

#last_recordsObject



292
293
294
# File 'lib/fluent/plugin/in_sql.rb', line 292

def last_records
  @data['last_records'] ||= {}
end

#update!Object



296
297
298
299
300
# File 'lib/fluent/plugin/in_sql.rb', line 296

def update!
  File.open(@path, 'w') {|f|
    f.write YAML.dump(@data)
  }
end