# 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.
#
# This configuration file is intended for use in ZK-based mode, where Apache ZooKeeper is required.
# 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. If not configured, the host name will be equal to the value of
# java.net.InetAddress.getCanonicalHostName(), with PLAINTEXT listener name, and port 9092.
# FORMAT:
# listeners = listener_name://host_name:port
# EXAMPLE:
# listeners = PLAINTEXT://your.host.name:9092
#listeners=PLAINTEXT://:9092
# Listener name, hostname and port the broker will advertise to clients.
# If not set, it uses the value for "listeners".
#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=18000
############################# 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.13-3.5.0.tgz 是Apache Kafka的一个特定版本,针对Scala 2.13构建。Apache Kafka是一个开源的流处理平台,主要用于构建实时流数据管道和应用程序。它设计用于水平扩展性、高吞吐量和容错性,已被广泛应用于各种大数据和实时应用场景中。 这个特定版本,3.5.0,为Kafka带来了一系列新特性、改进和修复。与之前的版本相比,它可能包含了更加稳定的API、性能优化、安全增强以及与其他系统的更好集成能力。此外,由于针对Scala 2.13的构建,它还可能利用Scala 2.13的新特性和优势。 使用 kafka_2.13-3.5.0.tgz 进行部署和配置通常需要一定的经验和知识,尤其是对于那些已经熟悉Apache Kafka的用户和开发者。部署后,您可以设置Kafka集群,生产和消费消息,以及使用Kafka的其他高级功能,如流处理、连接外部系统等。
资源推荐
资源详情
资源评论
收起资源包目录
Kafka最新Ubuntu安装包 (210个子文件)
eclipse-public-license-2.0 14KB
eclipse-distribution-license-1.0 2KB
CDDL+GPL-1.1 38KB
argparse-MIT 1KB
kafka-run-class.bat 5KB
kafka-server-start.bat 1KB
connect-distributed.bat 1KB
connect-standalone.bat 1KB
zookeeper-server-start.bat 1KB
zookeeper-shell.bat 1KB
kafka-server-stop.bat 997B
kafka-streams-application-reset.bat 983B
kafka-consumer-perf-test.bat 949B
kafka-producer-perf-test.bat 940B
kafka-console-producer.bat 925B
kafka-console-consumer.bat 925B
zookeeper-server-stop.bat 905B
kafka-delegation-tokens.bat 896B
kafka-metadata-quorum.bat 895B
kafka-transactions.bat 893B
kafka-e2e-latency.bat 889B
kafka-reassign-partitions.bat 888B
kafka-replica-verification.bat 886B
kafka-broker-api-versions.bat 885B
kafka-cluster.bat 885B
kafka-leader-election.bat 884B
kafka-delete-records.bat 883B
kafka-consumer-groups.bat 883B
kafka-jmx.bat 881B
kafka-dump-log.bat 878B
kafka-get-offsets.bat 877B
kafka-log-dirs.bat 877B
kafka-configs.bat 876B
kafka-topics.bat 875B
kafka-mirror-maker.bat 874B
kafka-storage.bat 874B
kafka-acls.bat 873B
classgraph-MIT 1KB
trogdor.conf 1KB
DWTFYWTPL 484B
rocksdbjni-7.1.2.jar 52.34MB
zstd-jni-1.5.5-1.jar 5.71MB
scala-library-2.13.10.jar 5.67MB
kafka-clients-3.5.0.jar 5MB
kafka_2.13-3.5.0.jar 4.89MB
scala-reflect-2.13.10.jar 3.57MB
kafka-streams-3.5.0.jar 1.72MB
snappy-java-1.1.10.0.jar 1.69MB
jackson-databind-2.13.5.jar 1.47MB
zookeeper-3.6.4.jar 1.2MB
jersey-common-2.39.1.jar 1.17MB
jline-3.22.0.jar 1.01MB
jersey-server-2.39.1.jar 928KB
javassist-3.29.2-GA.jar 776KB
jetty-server-9.4.51.v20230217.jar 720KB
connect-runtime-3.5.0.jar 701KB
lz4-java-1.8.0.jar 667KB
netty-common-4.1.92.Final.jar 644KB
kafka-metadata-3.5.0.jar 639KB
scala-java8-compat_2.13-1.0.2.jar 625KB
jetty-util-9.4.51.v20230217.jar 570KB
netty-handler-4.1.92.Final.jar 541KB
commons-lang3-3.8.1.jar 490KB
netty-transport-4.1.92.Final.jar 477KB
jackson-module-scala_2.13-2.13.5.jar 449KB
jackson-core-2.13.5.jar 366KB
netty-codec-4.1.92.Final.jar 337KB
trogdor-3.5.0.jar 334KB
reload4j-1.2.25.jar 326KB
jetty-client-9.4.51.v20230217.jar 320KB
jersey-client-2.39.1.jar 301KB
netty-buffer-4.1.92.Final.jar 298KB
jose4j-0.9.3.jar 291KB
kafka-storage-3.5.0.jar 286KB
plexus-utils-3.3.0.jar 257KB
zookeeper-jute-3.6.4.jar 245KB
jetty-http-9.4.51.v20230217.jar 230KB
hk2-locator-2.6.1.jar 199KB
hk2-api-2.6.1.jar 196KB
kafka-raft-3.5.0.jar 190KB
kafka-tools-3.5.0.jar 183KB
jetty-io-9.4.51.v20230217.jar 179KB
kafka-streams-scala_2.13-3.5.0.jar 161KB
jetty-servlet-9.4.51.v20230217.jar 143KB
netty-transport-classes-epoll-4.1.92.Final.jar 142KB
jakarta.ws.rs-api-2.1.6.jar 137KB
kafka-server-common-3.5.0.jar 131KB
hk2-utils-2.6.1.jar 129KB
jaxb-api-2.3.1.jar 125KB
javax.ws.rs-api-2.1.1.jar 124KB
connect-mirror-3.5.0.jar 122KB
jetty-security-9.4.51.v20230217.jar 116KB
kafka-group-coordinator-3.5.0.jar 114KB
jakarta.xml.bind-api-2.3.3.jar 113KB
jetty-servlets-9.4.51.v20230217.jar 105KB
reflections-0.9.12.jar 103KB
jackson-dataformat-csv-2.13.5.jar 103KB
connect-transforms-3.5.0.jar 103KB
metrics-core-4.1.12.1.jar 103KB
connect-api-3.5.0.jar 100KB
共 210 条
- 1
- 2
- 3
资源评论
JSU_曾是此间年少
- 粉丝: 1062
- 资源: 5
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功