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
# In case you use KafkaEx, you need to disable default worker to avoid crashes
67
71
config :kafka_ex, :disable_default_worker, true
@@ -88,6 +92,7 @@ Available parameters:
88
92
*`:ssl` - optional parameter. Ssl should be type boolean(). By default `:ssl` is `false`.
89
93
*`:min_delay` - optional parameter. Set minimal delay before send events. This parameter allows to increase max throughput in case when you get more messages (in term of count per second) than you expected when set `batch_size` parameter.
90
94
*`:max_batch_bytesize` - optional parameter. Allows to set a limit on the maximum batch size. By default it is 1_000_000 bytes.
95
+
*`:client_name` - client name that is used to start a producer. Included in metrics namespace. Defaults to `:kafka_producer_client`.
91
96
92
97
**Important:** The size of one message should not exceed `max_batch_bytesize` setting. If you need to work with large messages you must increase `max_batch_bytesize` value and value of Kafka topic setting `max.message.bytes` as well.
0 commit comments