mirror of https://github.com/apache/kafka.git
MINOR: improve KafkaStreams replication factor documentation (#9829)
Reviewers: Jason Gustafson <jason@confluent.io>, Jim Galasyn <jim.galasyn@confluent.io>
This commit is contained in:
parent
bf55afecda
commit
2e0c686ec1
|
@ -304,7 +304,8 @@
|
|||
</tr>
|
||||
<tr class="row-even"><td>replication.factor</td>
|
||||
<td>High</td>
|
||||
<td colspan="2">The replication factor for changelog topics and repartition topics created by the application.</td>
|
||||
<td colspan="2">The replication factor for changelog topics and repartition topics created by the application.
|
||||
If your broker cluster is on version 2.4 or newer, you can set -1 to use the broker default replication factor.</td>
|
||||
<td>1</td>
|
||||
</tr>
|
||||
<tr class="row-even"><td>retry.backoff.ms</td>
|
||||
|
|
|
@ -484,7 +484,8 @@ public class StreamsConfig extends AbstractConfig {
|
|||
/** {@code replication.factor} */
|
||||
@SuppressWarnings("WeakerAccess")
|
||||
public static final String REPLICATION_FACTOR_CONFIG = "replication.factor";
|
||||
private static final String REPLICATION_FACTOR_DOC = "The replication factor for change log topics and repartition topics created by the stream processing application.";
|
||||
private static final String REPLICATION_FACTOR_DOC = "The replication factor for change log topics and repartition topics created by the stream processing application." +
|
||||
" If your broker cluster is on version 2.4 or newer, you can set -1 to use the broker default replication factor.";
|
||||
|
||||
/** {@code request.timeout.ms} */
|
||||
@SuppressWarnings("WeakerAccess")
|
||||
|
|
Loading…
Reference in New Issue