Class: Fluent::SQLInput::StateStore
- Inherits:
-
Object
- Object
- Fluent::SQLInput::StateStore
- Defined in:
- lib/fluent/plugin/in_sql.rb
Instance Method Summary collapse
-
#initialize(path) ⇒ StateStore
constructor
A new instance of StateStore.
- #last_records ⇒ Object
- #update! ⇒ Object
Constructor Details
#initialize(path) ⇒ StateStore
Returns a new instance of StateStore.
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 |
# File 'lib/fluent/plugin/in_sql.rb', line 270 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_records ⇒ Object
287 288 289 |
# File 'lib/fluent/plugin/in_sql.rb', line 287 def last_records @data['last_records'] ||= {} end |
#update! ⇒ Object
291 292 293 294 295 |
# File 'lib/fluent/plugin/in_sql.rb', line 291 def update! File.open(@path, 'w') {|f| f.write YAML.dump(@data) } end |