ConsumerSettings

zio.kafka.consumer.ConsumerSettings
See theConsumerSettings companion object
case class ConsumerSettings(bootstrapServers: List[String], properties: Map[String, AnyRef], closeTimeout: Duration, pollTimeout: Duration, offsetRetrieval: OffsetRetrieval, rebalanceListener: RebalanceListener, restartStreamOnRebalancing: Boolean, runloopTimeout: Duration)

Attributes

restartStreamOnRebalancing

When true all streams are restarted during a rebalance, including those streams that are not revoked. The default is false.

runloopTimeout

Internal timeout for each iteration of the command processing and polling loop, use to detect stalling. This should be much larger than the pollTimeout and the time it takes to process chunks of records. If your consumer is not subscribed for long periods during its lifetime, this timeout should take that into account as well. When the timeout expires, the plainStream/partitionedStream/etc will fail with a Consumer.RunloopTimeout.

Companion:
object
Graph
Supertypes
trait Product
trait Equals
class Object
trait Matchable
class Any