惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

罗磊的独立博客
I
InfoQ
雷峰网
雷峰网
Hugging Face - Blog
Hugging Face - Blog
IT之家
IT之家
云风的 BLOG
云风的 BLOG
有赞技术团队
有赞技术团队
Martin Fowler
Martin Fowler
MyScale Blog
MyScale Blog
The GitHub Blog
The GitHub Blog
博客园_首页
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
G
Google Developers Blog
WordPress大学
WordPress大学
B
Blog
人人都是产品经理
人人都是产品经理
小众软件
小众软件
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
量子位
Apple Machine Learning Research
Apple Machine Learning Research
N
Netflix TechBlog - Medium
Last Week in AI
Last Week in AI
博客园 - 聂微东
Jina AI
Jina AI

Apache Kafka

Important configuration properties for Kafka broker Kafka Configuration API Design API Design API Design API Design API Design API Design API Design Basic Kafka Operations Basic Kafka Operations Basic Kafka Operations Basic Kafka Operations Basic Kafka Operations Basic Kafka Operations Basic Kafka Operations Basic Kafka Operations Basic Kafka Operations Basic Kafka Operations Basic Kafka Operations Basic Kafka Operations Basic Kafka Operations Basic Kafka Operations Basic Kafka Operations Basic Kafka Operations Basic Kafka Operations Basic Kafka Operations Basic Kafka Operations Basic Kafka Operations Basic Kafka Operations
Important configuration properties for the high-level con...
2001-01-01 · via Apache Kafka

You are viewing documentation for an older version (0.7) of Kafka. For up-to-date documentation, see the latest version.

Important configuration properties for the high-level consumer

Important configuration properties for the high-level consumer:

More details about consumer configuration can be found in the scala class kafka.consumer.ConsumerConfig.

property

default

description

groupid

groupid

is a string that uniquely identifies a set of consumers within the same consumer group.

socket.timeout.ms

30000

controls the socket timeout for network requests

socket.buffersize

64*1024

controls the socket receive buffer for network requests

fetch.size

300 * 1024

controls the number of bytes of messages to attempt to fetch in one request to the Kafka server

backoff.increment.ms

1000

This parameter avoids repeatedly polling a broker node which has no new data. We will backoff every time we get an empty set from the broker for this time period

queuedchunks.max

100

the high level consumer buffers the messages fetched from the server internally in blocking queues. This parameter controls the size of those queues

autocommit.enable

true

if set to true, the consumer periodically commits to zookeeper the latest consumed offset of each partition.

autocommit.interval.ms

10000

is the frequency that the consumed offsets are committed to zookeeper.

autooffset.reset

smallest

  • smallest: automatically reset the offset to the smallest offset available on the broker.
  • largest : automatically reset the offset to the largest offset available on the broker.
  • anything else: throw an exception to the consumer.

consumer.timeout.ms

-1

By default, this value is -1 and a consumer blocks indefinitely if no new message is available for consumption. By setting the value to a positive integer, a timeout exception is thrown to the consumer if no message is available for consumption after the specified timeout value.

rebalance.retries.max

4

max number of retries during rebalance

mirror.topics.whitelist

""

Whitelist of topics for this mirror’s embedded consumer to consume. At most one of whitelist/blacklist may be specified.

mirror.topics.blacklist

""

Topics to skip mirroring. At most one of whitelist/blacklist may be specified

mirror.consumer.numthreads

4

The number of threads to be used per topic for the mirroring consumer, by default