Last active
September 21, 2017 06:47
-
-
Save anny0739/f18f7a1a672d34d63fffd2567d1724d6 to your computer and use it in GitHub Desktop.
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
<source> | |
@type kafka_group | |
brokers "#{ENV['KAFKA_BROKERS']}" | |
consumer_group "#{ENV['KAFKA_CONSUMER_GROUP']}" | |
topics "#{ENV['KAFKA_TOPIC']}" | |
</source> | |
<filter search> | |
@type mysql_json | |
</filter> | |
<match search> | |
@type mysql_bulk | |
host "#{ENV['DATABASE_HOSTNAME']}" | |
database "#{ENV['DATABASE_NAME']}" | |
username "#{ENV['DATABASE_USERNAME']}" | |
password "#{ENV['DATABASE_PASSWORD']}" | |
column_names "#{ENV['DATABASE_COLUMNNAMES']}" | |
key_names "#{ENV['DATABASE_KEY_NAMES']}" | |
table "#{ENV['DATABASE_TABLE']}" | |
<buffer> | |
@type memory | |
flush_mode interval | |
flush_interval 10s | |
retry_max_interval 3 | |
retry_max_times 5s | |
retry_timeout 10s | |
overflow_action drop_oldest_chunk | |
</buffer> | |
</match> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment