Repository: kafka Updated Branches: refs/heads/0.9.0 dcdd3ea76 -> 09ba85641
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 (cherry picked from commit 4fd60c6120dc4330deb7317360c835b04bc6cb9a) Signed-off-by: Gwen Shapira <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/kafka/repo Commit: http://git-wip-us.apache.org/repos/asf/kafka/commit/09ba8564 Tree: http://git-wip-us.apache.org/repos/asf/kafka/tree/09ba8564 Diff: http://git-wip-us.apache.org/repos/asf/kafka/diff/09ba8564 Branch: refs/heads/0.9.0 Commit: 09ba85641c4034c87d2e81f91c54178b88251af9 Parents: dcdd3ea 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:48 2016 -0800 ---------------------------------------------------------------------- docs/ops.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kafka/blob/09ba8564/docs/ops.html ---------------------------------------------------------------------- diff --git a/docs/ops.html b/docs/ops.html index 04d4e7a..e6356ba 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>
