Packages

p

zio.kafka

consumer

package consumer

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. final case class CommittableRecord[K, V](record: ConsumerRecord[K, V], commitHandle: (Map[TopicPartition, Long]) ⇒ Task[Unit], consumerGroupMetadata: Option[ConsumerGroupMetadata]) extends Product with Serializable
  2. trait Consumer extends AnyRef
  3. final case class ConsumerSettings(bootstrapServers: List[String], properties: Map[String, AnyRef] = Map.empty, closeTimeout: zio.Duration = 30.seconds, pollTimeout: zio.Duration = 50.millis, offsetRetrieval: OffsetRetrieval = OffsetRetrieval.Auto(), rebalanceListener: RebalanceListener = RebalanceListener.noop, restartStreamOnRebalancing: Boolean = false, runloopTimeout: zio.Duration = ..., maxPartitionQueueSize: Int = 1024) extends Product with Serializable

    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.

    maxPartitionQueueSize

    Maximum number of records to be buffered per partition. This buffer improves throughput and supports varying downstream message processing time, while maintaining some backpressure. Large values effectively disable backpressure at the cost of high memory usage, low values will effectively disable prefetching in favour of low memory consumption. The number of records that is fetched on every poll is controlled by the max.poll.records setting, the number of records fetched for every partition is somewhere between 0 and max.poll.records. A value that is a power of 2 offers somewhat better queueing performance. The default value for this parameter is 2 * the default max.poll.records of 500, rounded to the nearest power of 2.

  4. final case class InvalidSubscriptionUnion(subscriptions: Chunk[Subscription]) extends RuntimeException with Product with Serializable
  5. sealed trait Offset extends AnyRef
  6. sealed trait OffsetBatch extends AnyRef
  7. trait RebalanceConsumer extends AnyRef

    A subset of Consumer methods available during rebalances.

  8. final case class RebalanceListener(onAssigned: (Set[TopicPartition], RebalanceConsumer) ⇒ Task[Unit], onRevoked: (Set[TopicPartition], RebalanceConsumer) ⇒ Task[Unit], onLost: (Set[TopicPartition], RebalanceConsumer) ⇒ Task[Unit]) extends Product with Serializable

    ZIO wrapper around Kafka's ConsumerRebalanceListener to work with Scala collection types and ZIO effects.

  9. sealed trait Subscription extends AnyRef

Ungrouped