Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

environment variable usage in kafka_configs for rdkafka_group input #434

Open
shyimo opened this issue Nov 15, 2021 · 4 comments
Open

environment variable usage in kafka_configs for rdkafka_group input #434

shyimo opened this issue Nov 15, 2021 · 4 comments
Labels
enhancement Feature request

Comments

@shyimo
Copy link

shyimo commented Nov 15, 2021

Is your feature request related to a problem? Please describe.

It seems like there is no way to pass environment variables for kafka_configs hash in rdkafka_group input.
for example:

<source>
  @type  rdkafka_group
  @label @APPLICATIONS
  topics "#{ENV["APPLICATIONS_TOPIC"] || "application-logs"}"
  format "json"

  kafka_configs {
     "bootstrap.servers": "#{ENV["BROKER_ADDRESS"] || "localhost:9092"}"
  }

</source>

the bootstrap.servers will not parse the BROKER_ADDRESS environment variable.

Describe the solution you'd like

This will be great if there was a way to parse those environment variables inside the kafka_configs hash.
At the current situation, we are not able to fully use all librdkafka features since hard coded values are not possible for some of the fields.

Describe alternatives you've considered

any parsing method that will able to get dynamic fields and not hard coded values

Additional context

No response

@ashie
Copy link
Member

ashie commented Nov 16, 2021

Hmm, probably we need to modify fluentd core to realize it.

@ashie ashie added the enhancement Feature request label Nov 16, 2021
@shyimo
Copy link
Author

shyimo commented Nov 17, 2021

@ashie
i ended up doing this:

<source>
  @type  rdkafka_group
  @label @APPLICATIONS
  topics "#{ENV["APPLICATIONS_TOPIC"] || "application-logs"}"
  format "json"

  kafka_configs "#{ENV["KAFKA_CONFIGS"]}"
</source>

and when i run my docker the following:

docker run -e KAFKA_CONFIGS="bootstrap.servers:${KAFKA_BROKERS},group.id:${APPLICATIONS_GROUP_ID}"

the KAFKA_CONFIGS environment variable is parsed as hash object and this works.

@billzhuang
Copy link

@shyimo it works to me. Super.

@sendbird-sehwankim
Copy link

Here is how I worked it out:

rdkafka_options "#{'{ "security.protocol": "sasl_ssl", "sasl.mechanisms": "SCRAM-SHA-512", "sasl.username": "%s", "sasl.password": "%s" }' % [ENV['MSK_USERNAME'], ENV['MSK_PASSWORD']]}"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement Feature request
Projects
None yet
Development

No branches or pull requests

4 participants