Repository: kafka Updated Branches: refs/heads/trunk cd15321e0 -> 4fd60c612
KAFKA-3216: "Modifying topics" section incorrectly says you can't change replication factor. Correct the text that said that you can't change the replication factor of a topic. Author: James Cheng <[email protected]> Reviewers: Ismael Juma Closes #881 from wushujames/KAFKA-3216 Project: http://git-wip-us.apache.org/repos/asf/kafka/repo Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/4fd60c61 Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/4fd60c61 Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/4fd60c61 Branch: refs/heads/trunk Commit: 4fd60c6120dc4330deb7317360c835b04bc6cb9a Parents: cd15321 Author: James Cheng <[email protected]> Authored: Tue Feb 9 10:33:39 2016 -0800 Committer: Gwen Shapira <[email protected]> Committed: Tue Feb 9 10:33:39 2016 -0800 ---------------------------------------------------------------------- docs/ops.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kafka/blob/4fd60c61/docs/ops.html ---------------------------------------------------------------------- diff --git a/docs/ops.html b/docs/ops.html index 8c01035..33080e2 100644 --- a/docs/ops.html +++ b/docs/ops.html @@ -62,7 +62,9 @@ And finally deleting a topic: Topic deletion option is disabled by default. To enable it set the server config <pre>delete.topic.enable=true</pre> <p> -Kafka does not currently support reducing the number of partitions for a topic or changing the replication factor. +Kafka does not currently support reducing the number of partitions for a topic. +<p> +Instructions for changing the replication factor of a topic can be found <a href="#basic_ops_increase_replication_factor">here</a>. <h4><a id="basic_ops_restarting" href="#basic_ops_restarting">Graceful shutdown</a></h4>
