Class: Fluent::Plugin::LocalStorage
Constant Summary
collapse
- DEFAULT_DIR_MODE =
0755
- DEFAULT_FILE_MODE =
0644
Constants inherited
from Storage
Storage::DEFAULT_TYPE
Configurable::CONFIG_TYPE_REGISTRY
Instance Attribute Summary collapse
Attributes inherited from Storage
#log
Attributes inherited from Base
#under_plugin_development
Instance Method Summary
collapse
Methods inherited from Storage
#implementation, #persistent_always?, #synchronized?, validate_key
#log, #owner, #owner=
Methods inherited from Base
#after_shutdown, #after_shutdown?, #after_start, #after_started?, #before_shutdown, #before_shutdown?, #close, #closed?, #configured?, #context_router, #context_router=, #fluentd_worker_id, #has_router?, #inspect, #plugin_root_dir, #shutdown, #shutdown?, #start, #started?, #stop, #stopped?, #string_safe_encoding, #terminate, #terminated?
#system_config, #system_config_override
#config, #configure_proxy_generate, #configured_section_create, included, lookup_type, register_type
Constructor Details
Returns a new instance of LocalStorage.
42
43
44
45
46
|
# File 'lib/fluent/plugin/storage_local.rb', line 42
def initialize
super
@store = {}
@multi_workers_available = nil
end
|
Instance Attribute Details
#store ⇒ Object
40
41
42
|
# File 'lib/fluent/plugin/storage_local.rb', line 40
def store
@store
end
|
Instance Method Details
48
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
|
# File 'lib/fluent/plugin/storage_local.rb', line 48
def configure(conf)
super
@on_memory = false
if @path
if File.exist?(@path) && File.file?(@path)
@multi_workers_available = false
elsif File.exist?(@path) && File.directory?(@path)
@path = File.join(@path, "worker#{fluentd_worker_id}", "storage.json")
@multi_workers_available = true
else if @path.end_with?('.json') @multi_workers_available = false
else @path = File.join(@path, "worker#{fluentd_worker_id}", "storage.json")
@multi_workers_available = true
end
end
elsif root_dir = owner.plugin_root_dir
basename = (conf.arg && !conf.arg.empty?) ? "storage.#{conf.arg}.json" : "storage.json"
@path = File.join(root_dir, basename)
@multi_workers_available = true
else
if @persistent
raise Fluent::ConfigError, "Plugin @id or path for <storage> required when 'persistent' is true"
else
if @autosave
log.warn "both of Plugin @id and path for <storage> are not specified. Using on-memory store."
else
log.info "both of Plugin @id and path for <storage> are not specified. Using on-memory store."
end
@on_memory = true
@multi_workers_available = true
end
end
if !@on_memory
dir = File.dirname(@path)
FileUtils.mkdir_p(dir, mode: @dir_mode) unless Dir.exist?(dir)
if File.exist?(@path)
raise Fluent::ConfigError, "Plugin storage path '#{@path}' is not readable/writable" unless File.readable?(@path) && File.writable?(@path)
begin
data = Yajl::Parser.parse(open(@path, 'r:utf-8'){ |io| io.read })
raise Fluent::ConfigError, "Invalid contents (not object) in plugin storage file: '#{@path}'" unless data.is_a?(Hash)
rescue => e
log.error "failed to read data from plugin storage file", path: @path, error: e
raise Fluent::ConfigError, "Unexpected error: failed to read data from plugin storage file: '#{@path}'"
end
else
raise Fluent::ConfigError, "Directory is not writable for plugin storage file '#{@path}'" unless File.stat(dir).writable?
end
end
end
|
#delete(key) ⇒ Object
150
151
152
|
# File 'lib/fluent/plugin/storage_local.rb', line 150
def delete(key)
@store.delete(key.to_s)
end
|
#fetch(key, defval) ⇒ Object
142
143
144
|
# File 'lib/fluent/plugin/storage_local.rb', line 142
def fetch(key, defval)
@store.fetch(key.to_s, defval)
end
|
#get(key) ⇒ Object
138
139
140
|
# File 'lib/fluent/plugin/storage_local.rb', line 138
def get(key)
@store[key.to_s]
end
|
#load ⇒ Object
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
# File 'lib/fluent/plugin/storage_local.rb', line 109
def load
return if @on_memory
return unless File.exist?(@path)
begin
json_string = open(@path, 'r:utf-8'){ |io| io.read }
json = Yajl::Parser.parse(json_string)
unless json.is_a?(Hash)
log.error "broken content for plugin storage (Hash required: ignored)", type: json.class
log.debug "broken content", content: json_string
return
end
@store = json
rescue => e
log.error "failed to load data for plugin storage from file", path: @path, error: e
end
end
|
#multi_workers_ready? ⇒ Boolean
102
103
104
105
106
107
|
# File 'lib/fluent/plugin/storage_local.rb', line 102
def multi_workers_ready?
unless @multi_workers_available
log.error "local plugin storage with multi workers should be configured to use directory 'path', or system root_dir and plugin id"
end
@multi_workers_available
end
|
#put(key, value) ⇒ Object
146
147
148
|
# File 'lib/fluent/plugin/storage_local.rb', line 146
def put(key, value)
@store[key.to_s] = value
end
|
#save ⇒ Object
126
127
128
129
130
131
132
133
134
135
136
|
# File 'lib/fluent/plugin/storage_local.rb', line 126
def save
return if @on_memory
tmp_path = @path + '.tmp'
begin
json_string = Yajl::Encoder.encode(@store, pretty: @pretty_print)
open(tmp_path, 'w:utf-8', @mode){ |io| io.write json_string }
File.rename(tmp_path, @path)
rescue => e
log.error "failed to save data for plugin storage to file", path: @path, tmp: tmp_path, error: e
end
end
|
#update(key, &block) ⇒ Object
154
155
156
|
# File 'lib/fluent/plugin/storage_local.rb', line 154
def update(key, &block)
@store[key.to_s] = block.call(@store[key.to_s])
end
|