Created
December 16, 2024 09:57
-
-
Save Mehrdad-Farshi/2856531043ee58445c9b2fce1741b786 to your computer and use it in GitHub Desktop.
fluentd Reading json payloads from kafka and insert them to Mariadb
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
services: | |
fluentd: | |
image: fluent/mariadb-msql:latest | |
container_name: fluent-smariadb-msql | |
network_mode: host | |
volumes: | |
- ./fluent.conf:/fluentd/etc/fluent.conf |
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
FROM fluent/fluentd:v1.16.0-debian-1.0 | |
# Switch to root user for installations | |
USER root | |
# Install required tools and dependencies | |
RUN apt-get update && apt-get install -y \ | |
libaio1 build-essential ruby-dev libsnappy-dev default-libmysqlclient-dev && \ | |
apt-get clean && rm -rf /var/lib/apt/lists/* | |
#Install required gem plugins | |
RUN gem install fluent-plugin-kafka --no-document && \ | |
gem install fluent-plugin-sql --no-document && \ | |
gem install db-mariadb && \ | |
gem install mysql2 && \ | |
gem install snappy --no-document && \ | |
gem install fluent-plugin-record-transformer --no-document | |
# Copy Fluentd configuration files into the container | |
COPY fluent.conf /fluentd/etc/ | |
# Set the Fluentd user | |
USER fluent |
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 | |
brokers "localhost:9092" | |
topics "person" | |
format json | |
</source> | |
# <match person> | |
# <parse> | |
# @type json | |
# </parse> | |
# @type stdout | |
# format json | |
# </match> | |
<match person> | |
@type sql | |
host 127.0.0.1 | |
port 3306 | |
database test | |
adapter mysql2 | |
username root | |
password qwe123 | |
socket /tmp/mysql.sock | |
<table> | |
table "person" | |
column_mapping first_name:firstname,last_name:lastname | |
</table> | |
</match> |
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
# generated messages that stored in a kafka topic called person | |
{ | |
"firstname": "John", | |
"lastname": "Anderson" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment