You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -261,12 +261,12 @@ All Ziggurat configs should be in your `clonfig` `config.edn` under the `:ziggur
261
261
* producer - Configuration for KafkaProducer. Currently, only following options are supported. Please see [Producer Configs](https://kafka.apache.org/documentation/#producerconfigs) for detailed explanation for each of the configuration parameters.
262
262
* bootstrap.servers - A list of host/port pairs to use for establishing the initial connection to the Kafka cluster.
263
263
* acks - The number of acknowledgments the producer requires the leader to have received before considering a request complete. Valid values are [all, -1, 0, 1].
264
-
* retries - Setting a value greater than zero will cause the client to resend any record whose send fails with a potentially transient error.
264
+
* retries - Setting a value greater than zero will cause the client to resend any record whose send fails with a potentially transient error.
265
265
* key.serializer - Serializer class for key that implements the org.apache.kafka.common.serialization.Serializer interface.
266
266
* value.serializer - Serializer class for value that implements the org.apache.kafka.common.serialization.Serializer interface.
267
267
* max.in.flight.requests.per.connection - The maximum number of unacknowledged requests the client will send on a single connection before blocking.
268
-
* enable.idempotence - When set to 'true', the producer will ensure that exactly one copy of each message is written in the stream. If 'false', producer retries due to broker failures, etc., may write duplicates of the retried message in the stream.
269
-
268
+
* enable.idempotence - When set to 'true', the producer will ensure that exactly one copy of each message is written in the stream. If 'false', producer retries due to broker failures, etc., may write duplicates of the retried message in the stream.
269
+
270
270
* datadog - The statsd host and port that metrics should be sent to, although the key name is datadog, it supports statsd as well to send metrics.
271
271
* sentry - Whenever a :failure keyword is returned from the mapper-function or an exception is raised while executing the mapper-function, an event is sent to sentry. You can skip this flow by disabling it.
272
272
* rabbit-mq-connection - The details required to make a connection to rabbitmq. We use rabbitmq for the retry mechanism.
0 commit comments