You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.7 KiB
65 lines
1.7 KiB
13 years ago
|
# see kafka.server.KafkaConfig for additional details and defaults
|
||
|
|
||
|
# the id of the broker
|
||
|
brokerid=0
|
||
|
|
||
|
# hostname of broker. If not set, will pick up from the value returned
|
||
|
# from getLocalHost. If there are multiple interfaces getLocalHost
|
||
|
# may not be what you want.
|
||
|
# hostname=
|
||
|
|
||
|
# number of logical partitions on this broker
|
||
|
num.partitions=1
|
||
|
|
||
|
# the port the socket server runs on
|
||
|
port=9092
|
||
|
|
||
|
# the number of processor threads the socket server uses. Defaults to the number of cores on the machine
|
||
|
num.threads=8
|
||
|
|
||
|
# the directory in which to store log files
|
||
|
log.dir=/tmp/kafka-logs
|
||
|
|
||
|
# the send buffer used by the socket server
|
||
|
socket.send.buffer=1048576
|
||
|
|
||
|
# the receive buffer used by the socket server
|
||
|
socket.receive.buffer=1048576
|
||
|
|
||
|
# the maximum size of a log segment
|
||
|
log.file.size=536870912
|
||
|
|
||
|
# the interval between running cleanup on the logs
|
||
|
log.cleanup.interval.mins=1
|
||
|
|
||
|
# the minimum age of a log file to eligible for deletion
|
||
|
log.retention.hours=168
|
||
|
|
||
|
#the number of messages to accept without flushing the log to disk
|
||
|
log.flush.interval=1
|
||
|
|
||
|
#set the following properties to use zookeeper
|
||
|
|
||
|
# enable connecting to zookeeper
|
||
|
enable.zookeeper=true
|
||
|
|
||
|
# zk connection string
|
||
|
# 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"
|
||
|
zk.connect=localhost:2181
|
||
|
|
||
|
# timeout in ms for connecting to zookeeper
|
||
|
zk.connectiontimeout.ms=1000000
|
||
|
|
||
|
# time based topic flush intervals in ms
|
||
|
#topic.flush.intervals.ms=topic:1000
|
||
|
|
||
|
# default time based flush interval in ms
|
||
|
log.default.flush.interval.ms=2000
|
||
|
|
||
|
# the interval (in ms) at which logs are checked to see if they need to be flushed to disk.
|
||
|
log.default.flush.scheduler.interval.ms=1000
|
||
|
|
||
|
# topic partition count map
|
||
|
# topic.partition.count.map=topic1:3, topic2:4
|