-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
engine.rb
273 lines (224 loc) · 7.89 KB
/
engine.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
#
# Fluentd
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
require 'fluent/config'
require 'fluent/event'
require 'fluent/event_router'
require 'fluent/msgpack_factory'
require 'fluent/root_agent'
require 'fluent/time'
require 'fluent/system_config'
require 'fluent/plugin'
module Fluent
class EngineClass
def initialize
@root_agent = nil
@default_loop = nil
@engine_stopped = false
@_worker_id = nil
@log_event_router = nil
@log_emit_thread = nil
@log_event_loop_stop = false
@log_event_loop_graceful_stop = false
@log_event_queue = []
@log_event_verbose = false
@suppress_config_dump = false
@system_config = SystemConfig.new
@dry_run_mode = false
end
MAINLOOP_SLEEP_INTERVAL = 0.3
MATCH_CACHE_SIZE = 1024
LOG_EMIT_INTERVAL = 0.1
attr_reader :root_agent
attr_reader :matches, :sources
attr_reader :system_config
attr_accessor :dry_run_mode
def init(system_config)
@system_config = system_config
@suppress_config_dump = system_config.suppress_config_dump unless system_config.suppress_config_dump.nil?
@without_source = system_config.without_source unless system_config.without_source.nil?
@log_event_verbose = system_config.log_event_verbose unless system_config.log_event_verbose.nil?
@root_agent = RootAgent.new(log: log, system_config: @system_config)
self
end
def log
$log
end
def parse_config(io, fname, basepath = Dir.pwd, v1_config = false)
if fname =~ /\.rb$/
require 'fluent/config/dsl'
Config::DSL::Parser.parse(io, File.join(basepath, fname))
else
Config.parse(io, fname, basepath, v1_config)
end
end
def run_configure(conf)
configure(conf)
conf.check_not_fetched { |key, e|
parent_name, plugin_name = e.unused_in
if parent_name
message = if plugin_name
"section <#{e.name}> is not used in <#{parent_name}> of #{plugin_name} plugin"
else
"section <#{e.name}> is not used in <#{parent_name}>"
end
if e.for_every_workers?
$log.warn :worker0, message
elsif e.for_this_worker?
$log.warn message
end
next
end
unless e.name == 'system'
unless @without_source && e.name == 'source'
message = "parameter '#{key}' in #{e.to_s.strip} is not used."
if e.for_every_workers?
$log.warn :worker0, message
elsif e.for_this_worker?
$log.warn message
end
end
end
}
end
def configure(conf)
# plugins / configuration dumps
Gem::Specification.find_all.select{|x| x.name =~ /^fluent(d|-(plugin|mixin)-.*)$/}.each do |spec|
$log.info :worker0, "gem '#{spec.name}' version '#{spec.version}'"
end
@root_agent.configure(conf)
begin
log_event_agent = @root_agent.find_label(Fluent::Log::LOG_EVENT_LABEL)
log_event_router = log_event_agent.event_router
# suppress mismatched tags only for <label @FLUENT_LOG> label.
# it's not suppressed in default event router for non-log-event events
log_event_router.suppress_missing_match!
@log_event_router = log_event_router
unmatched_tags = Fluent::Log.event_tags.select{|t| !@log_event_router.match?(t) }
unless unmatched_tags.empty?
$log.warn "match for some tags of log events are not defined (to be ignored)", tags: unmatched_tags
end
rescue ArgumentError # ArgumentError "#{label_name} label not found"
# use default event router if <label @FLUENT_LOG> is missing in configuration
log_event_router = @root_agent.event_router
if Fluent::Log.event_tags.any?{|t| log_event_router.match?(t) }
@log_event_router = log_event_router
unmatched_tags = Fluent::Log.event_tags.select{|t| !@log_event_router.match?(t) }
unless unmatched_tags.empty?
$log.warn "match for some tags of log events are not defined (to be ignored)", tags: unmatched_tags
end
end
end
$log.enable_event(true) if @log_event_router
unless @suppress_config_dump
$log.info :supervisor, "using configuration file: #{conf.to_s.rstrip}"
end
end
def add_plugin_dir(dir)
Plugin.add_plugin_dir(dir)
end
def emit(tag, time, record)
raise "BUG: use router.emit instead of Engine.emit"
end
def emit_array(tag, array)
raise "BUG: use router.emit_array instead of Engine.emit_array"
end
def emit_stream(tag, es)
raise "BUG: use router.emit_stream instead of Engine.emit_stream"
end
def flush!
@root_agent.flush!
end
def now
# TODO thread update
Fluent::EventTime.now
end
def log_event_loop
$log.disable_events(Thread.current)
while sleep(LOG_EMIT_INTERVAL)
break if @log_event_loop_stop
break if @log_event_loop_graceful_stop && @log_event_queue.empty?
next if @log_event_queue.empty?
# NOTE: thead-safe of slice! depends on GVL
events = @log_event_queue.slice!(0..-1)
next if events.empty?
events.each {|tag,time,record|
begin
@log_event_router.emit(tag, time, record)
rescue => e
# This $log.error doesn't emit log events, because of `$log.disable_events(Thread.current)` above
$log.error "failed to emit fluentd's log event", tag: tag, event: record, error: e
end
}
end
end
def run
begin
$log.info "starting fluentd worker", pid: Process.pid, ppid: Process.ppid, worker: worker_id
start
if @log_event_router
$log.enable_event(true)
@log_emit_thread = Thread.new(&method(:log_event_loop))
@log_emit_thread.abort_on_exception = true
end
$log.info "fluentd worker is now running", worker: worker_id
sleep MAINLOOP_SLEEP_INTERVAL until @engine_stopped
$log.info "fluentd worker is now stopping", worker: worker_id
rescue Exception => e
$log.error "unexpected error", error: e
$log.error_backtrace
raise
end
unless @log_event_verbose
$log.enable_event(false)
if @log_emit_thread
# to make sure to emit all log events into router, before shutting down
@log_event_loop_graceful_stop = true
@log_emit_thread.join
@log_emit_thread = nil
end
end
$log.info "shutting down fluentd worker", worker: worker_id
shutdown
if @log_emit_thread
@log_event_loop_stop = true
@log_emit_thread.join
end
end
def stop
@engine_stopped = true
nil
end
def push_log_event(tag, time, record)
return if @log_emit_thread.nil?
@log_event_queue.push([tag, time, record])
end
def worker_id
return @_worker_id if @_worker_id
# if ENV doesn't have SERVERENGINE_WORKER_ID, it is a worker under --no-supervisor or in tests
# so it's (almost) a single worker, worker_id=0
@_worker_id = (ENV['SERVERENGINE_WORKER_ID'] || 0).to_i
@_worker_id
end
private
def start
@root_agent.start
end
def shutdown
@root_agent.shutdown
end
end
Engine = EngineClass.new
end