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.
231 232 233 234 235 236 237 238 239 240 241 242 243 244 |
# File 'lib/fluent/plugin/in_sql.rb', line 231 def initialize(path) @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
246 247 248 |
# File 'lib/fluent/plugin/in_sql.rb', line 246 def last_records @data['last_records'] ||= {} end |
#update! ⇒ Object
250 251 252 253 254 |
# File 'lib/fluent/plugin/in_sql.rb', line 250 def update! File.open(@path, 'w') {|f| f.write YAML.dump(@data) } end |