Skip to content

Commit 9e24c55

Browse files
committed
fix default typo and set max to max of int64
1 parent 6b06180 commit 9e24c55

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

specification/resources/databases/models/advanced_config/kafka_advanced_config.yml

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -110,17 +110,18 @@ properties:
110110
Only applicable for logs that are being compacted
111111
type: integer
112112
minimum: 30000
113-
maximum: 9223372036854776000
113+
maximum: 9223372036854775807
114114
example: 60000
115-
defeault: 9223372036854775807
115+
default: 9223372036854775807
116116
log_cleaner_min_compaction_lag_ms:
117117
description: >-
118118
The minimum time a message will remain uncompacted in the
119119
log. Only applicable for logs that are being compacted.
120120
type: integer
121121
minimum: 0
122-
maximum: 9223372036854776000
122+
maximum: 9223372036854775807
123123
example: 100000
124+
default: 0
124125
log_cleanup_policy:
125126
description: >-
126127
The default cleanup policy for segments beyond the retention
@@ -138,16 +139,17 @@ properties:
138139
messages are flushed to disk
139140
type: integer
140141
minimum: 1
141-
maximum: 9223372036854776000
142-
example: 9223372036854776000
142+
maximum: 9223372036854775807
143+
example: 9223372036854775807
144+
default: 9223372036854775807
143145
log_flush_interval_ms:
144146
description: >-
145147
The maximum time in ms that a message in any topic is kept
146148
in memory before flushed to disk. If not set, the value in log.flush.scheduler.interval.ms
147149
is used
148150
type: integer
149151
minimum: 0
150-
maximum: 9223372036854776000
152+
maximum: 9223372036854775807
151153
example: 1000000
152154
default: 9223372036854775807
153155
log_index_interval_bytes:
@@ -190,7 +192,7 @@ properties:
190192
a broker receives a message and the timestamp specified in the message
191193
type: integer
192194
minimum: 0
193-
maximum: 9223372036854776000
195+
maximum: 9223372036854775807
194196
example: 1000000
195197
default: 9223372036854775807
196198
log_preallocate:
@@ -204,7 +206,7 @@ properties:
204206
The maximum size of the log before deleting messages
205207
type: integer
206208
minimum: -1
207-
maximum: 9223372036854776000
209+
maximum: 9223372036854775807
208210
example: 1000000
209211
default: -1
210212
log_retention_hours:
@@ -222,7 +224,7 @@ properties:
222224
is used. If set to -1, no time limit is applied.
223225
type: integer
224226
minimum: -1
225-
maximum: 9223372036854776000
227+
maximum: 9223372036854775807
226228
example: 100000000
227229
default: 604800000
228230
log_roll_jitter_ms:
@@ -231,7 +233,7 @@ properties:
231233
milliseconds). If not set, the value in log.roll.jitter.hours is used
232234
type: integer
233235
minimum: 0
234-
maximum: 9223372036854776000
236+
maximum: 9223372036854775807
235237
example: 10000000
236238
default: 604800000
237239
log_roll_ms:
@@ -240,7 +242,7 @@ properties:
240242
(in milliseconds).
241243
type: integer
242244
minimum: 1
243-
maximum: 9223372036854776000
245+
maximum: 9223372036854775807
244246
example: 1000000
245247
default: 604800000
246248
log_segment_bytes:

0 commit comments

Comments
 (0)