| Option | KAFKA_CHATTER_PRODUCER_ | |
| Description |
Prefix that allows you to pass Kafka configuration parameters to
Kafka producer clients used for writing to the chatter queue.
Replaces EXTRA_KAFKA_CONFIGS_FILE.
| |
| Introduced Version | 1.173.0 | |
It's possible to pass Kafka configuration properties to
LogScale's Kafka clients using the using the
KAFKA_CHATTER_PRODUCER_ prefix. For example, this
enables LogScale to connect to a Kafka cluster using SSL and
SASL.
Kafka configuration options, such as
request.timeout.ms can be passed
with the prefix using a simple rewrite:
Write the option name in uppercase (example:
REQUEST.TIMEOUT.MS).Replace . with _ (example:
REQUEST_TIMEOUT_MS)Apply the prefix for the target client (example:
KAFKA_CHATTER_PRODUCER_REQUEST_TIMEOUT_MS)Pass this as an environment variable to LogScale on boot (example:
KAFKA_CHATTER_PRODUCER_REQUEST_TIMEOUT_MS=30000)
For a list of all possible Kafka producer configuration options, see Producer configs.
If you want to pass a configuration to all clients, see the
KAFKA_COMMON_ prefix instead. Settings configured
using the client-specific prefixes have precedence if the
setting is present with both prefixes.