# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# see kafka.server.KafkaConfig for additional details and defaults
############################# Server Basics #############################
# The id of the broker. This must be set to a unique integer for each broker.
broker.id=0
############################# Socket Server Settings #############################
# The address the socket server listens on. It will get the value returned from
# java.net.InetAddress.getCanonicalHostName() if not configured.
# FORMAT:
# listeners = listener_name://host_name:port
# EXAMPLE:
# listeners = PLAINTEXT://your.host.name:9092
#listeners=PLAINTEXT://:9092
# Hostname and port the broker will advertise to producers and consumers. If not set,
# it uses the value for "listeners" if configured. Otherwise, it will use the value
# returned from java.net.InetAddress.getCanonicalHostName().
#advertised.listeners=PLAINTEXT://your.host.name:9092
# Maps listener names to security protocols, the default is for them to be the same. See the config documentation for more details
#listener.security.protocol.map=PLAINTEXT:PLAINTEXT,SSL:SSL,SASL_PLAINTEXT:SASL_PLAINTEXT,SASL_SSL:SASL_SSL
# The number of threads that the server uses for receiving requests from the network and sending responses to the network
num.network.threads=3
# The number of threads that the server uses for processing requests, which may include disk I/O
num.io.threads=8
# The send buffer (SO_SNDBUF) used by the socket server
socket.send.buffer.bytes=102400
# The receive buffer (SO_RCVBUF) used by the socket server
socket.receive.buffer.bytes=102400
# The maximum size of a request that the socket server will accept (protection against OOM)
socket.request.max.bytes=104857600
############################# Log Basics #############################
# A comma separated list of directories under which to store log files
log.dirs=/tmp/kafka-logs
# The default number of log partitions per topic. More partitions allow greater
# parallelism for consumption, but this will also result in more files across
# the brokers.
num.partitions=1
# The number of threads per data directory to be used for log recovery at startup and flushing at shutdown.
# This value is recommended to be increased for installations with data dirs located in RAID array.
num.recovery.threads.per.data.dir=1
############################# Internal Topic Settings #############################
# The replication factor for the group metadata internal topics "__consumer_offsets" and "__transaction_state"
# For anything other than development testing, a value greater than 1 is recommended to ensure availability such as 3.
offsets.topic.replication.factor=1
transaction.state.log.replication.factor=1
transaction.state.log.min.isr=1
############################# Log Flush Policy #############################
# Messages are immediately written to the filesystem but by default we only fsync() to sync
# the OS cache lazily. The following configurations control the flush of data to disk.
# There are a few important trade-offs here:
# 1. Durability: Unflushed data may be lost if you are not using replication.
# 2. Latency: Very large flush intervals may lead to latency spikes when the flush does occur as there will be a lot of data to flush.
# 3. Throughput: The flush is generally the most expensive operation, and a small flush interval may lead to excessive seeks.
# The settings below allow one to configure the flush policy to flush data after a period of time or
# every N messages (or both). This can be done globally and overridden on a per-topic basis.
# The number of messages to accept before forcing a flush of data to disk
#log.flush.interval.messages=10000
# The maximum amount of time a message can sit in a log before we force a flush
#log.flush.interval.ms=1000
############################# Log Retention Policy #############################
# The following configurations control the disposal of log segments. The policy can
# be set to delete segments after a period of time, or after a given size has accumulated.
# A segment will be deleted whenever *either* of these criteria are met. Deletion always happens
# from the end of the log.
# The minimum age of a log file to be eligible for deletion due to age
log.retention.hours=168
# A size-based retention policy for logs. Segments are pruned from the log unless the remaining
# segments drop below log.retention.bytes. Functions independently of log.retention.hours.
#log.retention.bytes=1073741824
# The maximum size of a log segment file. When this size is reached a new log segment will be created.
log.segment.bytes=1073741824
# The interval at which log segments are checked to see if they can be deleted according
# to the retention policies
log.retention.check.interval.ms=300000
############################# Zookeeper #############################
# Zookeeper connection string (see zookeeper docs for details).
# This is a comma separated host:port pairs, each corresponding to a zk
# server. e.g. "127.0.0.1:3000,127.0.0.1:3001,127.0.0.1:3002".
# You can also append an optional chroot string to the urls to specify the
# root directory for all kafka znodes.
zookeeper.connect=localhost:2181
# Timeout in ms for connecting to zookeeper
zookeeper.connection.timeout.ms=6000
############################# Group Coordinator Settings #############################
# The following configuration specifies the time, in milliseconds, that the GroupCoordinator will delay the initial consumer rebalance.
# The rebalance will be further delayed by the value of group.initial.rebalance.delay.ms as new members join the group, up to a maximum of max.poll.interval.ms.
# The default value for this is 3 seconds.
# We override this to 0 here as it makes for a better out-of-the-box experience for development and testing.
# However, in production environments the default value of 3 seconds is more suitable as this will help to avoid unnecessary, and potentially expensive, rebalances during application startup.
group.initial.rebalance.delay.ms=0
没有合适的资源?快使用搜索试试~ 我知道了~
kafka_2.12-2.4.0.tgz
需积分: 16 22 下载量 53 浏览量
2020-01-14
17:43:09
上传
评论
收藏 59.4MB TGZ 举报
温馨提示
Kafka是由Apache软件基金会开发的一个开源流处理平台,由Scala和Java编写。Kafka是一种高吞吐量的分布式发布订阅消息系统,它可以处理消费者在网站中的所有动作流数据。 这种动作(网页浏览,搜索和其他用户的行动)是在现代网络上的许多社会功能的一个关键因素。 这些数据通常是由于吞吐量的要求而通过处理日志和日志聚合来解决。 对于像Hadoop一样的日志数据和离线分析系统,但又要求实时处理的限制,这是一个可行的解决方案。Kafka的目的是通过Hadoop的并行加载机制来统一线上和离线的消息处理,也是为了通过集群来提供实时的消息。
资源推荐
资源详情
资源评论
收起资源包目录
kafka_2.12-2.4.0.tgz (179个子文件)
kafka_2.12-2.4.0-scaladoc.jar.asc 821B
kafka_2.12-2.4.0-javadoc.jar.asc 821B
kafka_2.12-2.4.0-test-sources.jar.asc 821B
kafka_2.12-2.4.0.jar.asc 821B
kafka_2.12-2.4.0-test.jar.asc 821B
kafka_2.12-2.4.0-sources.jar.asc 821B
kafka-run-class.bat 5KB
kafka-server-start.bat 1KB
connect-distributed.bat 1KB
connect-standalone.bat 1KB
zookeeper-server-start.bat 1KB
kafka-server-stop.bat 997B
zookeeper-shell.bat 977B
kafka-streams-application-reset.bat 972B
kafka-producer-perf-test.bat 940B
kafka-consumer-perf-test.bat 938B
kafka-console-consumer.bat 925B
kafka-console-producer.bat 925B
zookeeper-server-stop.bat 905B
kafka-preferred-replica-election.bat 900B
kafka-reassign-partitions.bat 888B
kafka-replica-verification.bat 886B
kafka-delegation-tokens.bat 885B
kafka-broker-api-versions.bat 885B
kafka-leader-election.bat 884B
kafka-delete-records.bat 883B
kafka-consumer-groups.bat 883B
kafka-dump-log.bat 878B
kafka-log-dirs.bat 877B
kafka-configs.bat 876B
kafka-topics.bat 875B
kafka-mirror-maker.bat 874B
kafka-acls.bat 873B
trogdor.conf 1KB
rocksdbjni-5.18.3.jar 12.09MB
scala-library-2.12.10.jar 5.03MB
kafka_2.12-2.4.0.jar 4.11MB
zstd-jni-1.4.3-1.jar 3.87MB
scala-reflect-2.12.10.jar 3.51MB
kafka_2.12-2.4.0-test.jar 3.22MB
kafka-clients-2.4.0.jar 3.12MB
guava-20.0.jar 2.33MB
snappy-java-1.1.7.3.jar 1.93MB
jackson-databind-2.10.0.jar 1.34MB
scala-java8-compat_2.12-0.9.0.jar 1.12MB
jersey-common-2.28.jar 1.09MB
kafka-streams-2.4.0.jar 1.06MB
zookeeper-3.5.6.jar 962KB
jersey-server-2.28.jar 914KB
kafka_2.12-2.4.0-test-sources.jar 836KB
kafka_2.12-2.4.0-sources.jar 769KB
javassist-3.22.0-CR2.jar 721KB
jetty-server-9.4.20.v20190813.jar 642KB
lz4-java-1.6.0.jar 625KB
netty-common-4.1.42.Final.jar 590KB
connect-runtime-2.4.0.jar 536KB
jetty-util-9.4.20.v20190813.jar 526KB
commons-lang3-3.8.1.jar 490KB
log4j-1.2.17.jar 478KB
netty-transport-4.1.42.Final.jar 462KB
netty-handler-4.1.42.Final.jar 427KB
kafka-tools-2.4.0.jar 389KB
jackson-core-2.10.0.jar 340KB
jackson-module-scala_2.12-2.10.0.jar 334KB
netty-codec-4.1.42.Final.jar 311KB
jetty-client-9.4.20.v20190813.jar 289KB
netty-buffer-4.1.42.Final.jar 271KB
plexus-utils-3.2.0.jar 257KB
zookeeper-jute-3.5.6.jar 244KB
jetty-http-9.4.20.v20190813.jar 203KB
jersey-client-2.28.jar 192KB
hk2-locator-2.5.0.jar 184KB
hk2-api-2.5.0.jar 183KB
kafka-streams-scala_2.12-2.4.0.jar 178KB
jetty-io-9.4.20.v20190813.jar 152KB
jakarta.ws.rs-api-2.1.5.jar 137KB
reflections-0.9.11.jar 128KB
jetty-servlet-9.4.20.v20190813.jar 125KB
javax.ws.rs-api-2.1.1.jar 124KB
jaxb-api-2.3.0.jar 123KB
netty-transport-native-epoll-4.1.42.Final.jar 121KB
hk2-utils-2.5.0.jar 115KB
jetty-security-9.4.20.v20190813.jar 114KB
scala-collection-compat_2.12-2.1.2.jar 114KB
jakarta.xml.bind-api-2.3.2.jar 113KB
connect-api-2.4.0.jar 99KB
jetty-servlets-9.4.20.v20190813.jar 99KB
jackson-dataformat-csv-2.10.0.jar 97KB
javax.servlet-api-3.1.0.jar 94KB
validation-api-2.0.1.Final.jar 91KB
connect-transforms-2.4.0.jar 89KB
argparse4j-0.7.0.jar 88KB
connect-mirror-2.4.0.jar 87KB
jersey-media-jaxb-2.28.jar 84KB
metrics-core-2.2.0.jar 80KB
jopt-simple-5.0.4.jar 76KB
jersey-hk2-2.28.jar 75KB
jersey-container-servlet-core-2.28.jar 72KB
activation-1.1.1.jar 68KB
jackson-annotations-2.10.0.jar 66KB
共 179 条
- 1
- 2
资源评论
shvip
- 粉丝: 25
- 资源: 210
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- (源码)基于C语言的系统服务框架.zip
- (源码)基于Spring MVC和MyBatis的选课管理系统.zip
- (源码)基于ArcEngine的GIS数据处理系统.zip
- (源码)基于JavaFX和MySQL的医院挂号管理系统.zip
- (源码)基于IdentityServer4和Finbuckle.MultiTenant的多租户身份认证系统.zip
- (源码)基于Spring Boot和Vue3+ElementPlus的后台管理系统.zip
- (源码)基于C++和Qt框架的dearoot配置管理系统.zip
- (源码)基于 .NET 和 EasyHook 的虚拟文件系统.zip
- (源码)基于Python的金融文档智能分析系统.zip
- (源码)基于Java的医药管理系统.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功