-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fluentd command: add --with-source-only
It launches Fluentd with Input plugins only. Here is the specification. * Those Input plugins emits the events to SourceOnlyBufferAgent. * The events is kept in the buf_file during the source-only-mode. * SIGRTMIN(34) cancels the mode. * After canceled, the new agent starts to load the buffer. Signed-off-by: Daijiro Fukuda <[email protected]>
- Loading branch information
Showing
10 changed files
with
247 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
# | ||
# 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/plugin/output' | ||
|
||
module Fluent::Plugin | ||
class BufferOutput < Output | ||
Fluent::Plugin.register_output("buffer", self) | ||
helpers :event_emitter | ||
|
||
desc "Try to remove the buffer directory after terminate." + | ||
" Mainly for the --with-source-only feature." | ||
config_param :cleanup_after_shutdown, :bool, default: false | ||
|
||
config_section :buffer do | ||
config_set_default :@type, "file" | ||
config_set_default :chunk_keys, ["tag"] | ||
config_set_default :flush_mode, :interval | ||
config_set_default :flush_interval, 10 | ||
end | ||
|
||
def multi_workers_ready? | ||
true | ||
end | ||
|
||
def initialize | ||
super | ||
|
||
@buffer_path = nil | ||
end | ||
|
||
def configure(conf) | ||
super | ||
|
||
raise Fluent::ConfigError, "The buffer plugin does not be supported. It must have 'buffer_path' getter. You can use 'file' buffer." unless @buffer.respond_to?(:buffer_path) | ||
|
||
@buffer_path = @buffer.buffer_path | ||
end | ||
|
||
def write(chunk) | ||
return if chunk.empty? | ||
router.emit_stream(chunk.metadata.tag, Fluent::MessagePackEventStream.new(chunk.read)) | ||
end | ||
|
||
def terminate | ||
super | ||
|
||
return unless cleanup_after_shutdown | ||
|
||
unless Dir.empty?(@buffer_path) | ||
if @buffer_config.flush_at_shutdown | ||
log.warn "some buffer files remain in #{@buffer_path}, so cancel cleanup the directory." + | ||
" Please consider saving or recovering the buffer files in the directory." | ||
end | ||
return | ||
end | ||
|
||
begin | ||
FileUtils.remove_dir(@buffer_path) | ||
rescue => e | ||
log.warn "failed to remove the empty buffer dirctory: #{@buffer_path}", error: e | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# | ||
# 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 'securerandom' | ||
|
||
require 'fluent/agent' | ||
require 'fluent/system_config' | ||
|
||
module Fluent | ||
class SourceOnlyBufferAgent < Agent | ||
BUFFER_DIR_NAME = SecureRandom.uuid | ||
|
||
def initialize(log:, system_config:) | ||
super(log: log) | ||
|
||
@buffer_path = File.join(system_config.root_dir || DEFAULT_BACKUP_DIR, 'source-only-buffer', BUFFER_DIR_NAME) | ||
end | ||
|
||
def configure(flush: false) | ||
super( | ||
Config::Element.new('SOURCE_ONLY_BUFFER', '', {}, [ | ||
Config::Element.new('match', '**', {'@type' => 'buffer', '@label' => '@ROOT', 'cleanup_after_shutdown' => 'true'}, [ | ||
Config::Element.new('buffer', '', { | ||
'path' => @buffer_path, | ||
'flush_at_shutdown' => flush ? 'true' : 'false', | ||
'flush_thread_count' => flush ? 1 : 0, | ||
'overflow_action' => "drop_oldest_chunk", | ||
}, []) | ||
]) | ||
]) | ||
) | ||
end | ||
end | ||
end |
Oops, something went wrong.