75
75
76
76
############################# Socket Server Settings #############################
77
77
78
- # The address the socket server listens on. It will get the value returned from
78
+ # The address the socket server listens on. It will get the value returned from
79
79
# java.net.InetAddress.getCanonicalHostName() if not configured.
80
80
# FORMAT:
81
81
# listeners = listener_name://host_name:port
84
84
#listeners=PLAINTEXT://:9092
85
85
listeners=OUTSIDE://:9094,PLAINTEXT://:9092
86
86
87
- # Hostname and port the broker will advertise to producers and consumers. If not set,
87
+ # Hostname and port the broker will advertise to producers and consumers. If not set,
88
88
# it uses the value for "listeners" if configured. Otherwise, it will use the value
89
89
# returned from java.net.InetAddress.getCanonicalHostName().
90
90
#advertised.listeners=PLAINTEXT://your.host.name:9092
@@ -124,7 +124,7 @@ data:
124
124
# There are a few important trade-offs here:
125
125
# 1. Durability: Unflushed data may be lost if you are not using replication.
126
126
# 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.
127
- # 3. Throughput: The flush is generally the most expensive operation, and a small flush interval may lead to exceessive seeks.
127
+ # 3. Throughput: The flush is generally the most expensive operation, and a small flush interval may lead to excessive seeks.
128
128
# The settings below allow one to configure the flush policy to flush data after a period of time or
129
129
# every N messages (or both). This can be done globally and overridden on a per-topic basis.
130
130
@@ -144,8 +144,8 @@ data:
144
144
# The minimum age of a log file to be eligible for deletion due to age
145
145
log.retention.hours=-1
146
146
147
- # A size-based retention policy for logs. Segments are pruned from the log as long as the remaining
148
- # segments don't drop below log.retention.bytes. Functions independently of log.retention.hours.
147
+ # A size-based retention policy for logs. Segments are pruned from the log unless the remaining
148
+ # segments drop below log.retention.bytes. Functions independently of log.retention.hours.
149
149
#log.retention.bytes=1073741824
150
150
151
151
# The maximum size of a log segment file. When this size is reached a new log segment will be created.
0 commit comments