save_kafka
Saves a byte stream to a Apache Kafka topic.
Description
The save_kafka
operator saves bytes to a Kafka topic.
The implementation uses the official librdkafka from Confluent and
supports all configuration options. You can specify them
via options
parameter as {key: value, ...}
.
We recommend putting your Kafka options into the dedicated kafka.yaml
plugin
config file. This way you can configure
your all your environment-specific options once, independent of the
per-connector invocations.
The operator injects the following default librdkafka configuration values in case no configuration file is present, or when the configuration does not include them:
bootstrap.servers
:localhost
client.id
:tenzir
group.id
:tenzir
topic = str (optional)
The Kafka topic to use.
Defaults to "tenzir"
.
key = str (optional)
Sets a fixed key for all messages.
timestamp = time (optional)
Sets a fixed timestamp for all messages.
options = record (optional)
A record of key-value configuration options for
librdkafka, e.g., {"auto.offset.reset" : "earliest",
"enable.partition.eof": true}
.
The save_kafka
operator passes the key-value pairs directly to
librdkafka. Consult the list of available configuration
options to configure Kafka according to your needs.
We recommand factoring these options into the plugin-specific kafka.yaml
so
that they are indpendent of the save_kafka
arguments.