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

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
小众软件
小众软件
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园_首页
博客园 - 司徒正美
Jina AI
Jina AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
C
Check Point Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Hugging Face - Blog
Hugging Face - Blog
B
Blog RSS Feed
阮一峰的网络日志
阮一峰的网络日志
D
DataBreaches.Net
The GitHub Blog
The GitHub Blog
G
Google Developers Blog
L
LangChain Blog
T
The Blog of Author Tim Ferriss
博客园 - 【当耐特】
Engineering at Meta
Engineering at Meta
Google DeepMind News
Google DeepMind News
雷峰网
雷峰网
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ

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