You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by ne...@apache.org on 2014/03/21 18:08:50 UTC

svn commit: r1579984 - in /kafka/site/081: documentation.html ops.html

Author: nehanarkhede
Date: Fri Mar 21 17:08:50 2014
New Revision: 1579984

URL: http://svn.apache.org/r1579984
Log:
Added decommissioning broker and increasing replication factor in the table of contents

Modified:
    kafka/site/081/documentation.html
    kafka/site/081/ops.html

Modified: kafka/site/081/documentation.html
URL: http://svn.apache.org/viewvc/kafka/site/081/documentation.html?rev=1579984&r1=1579983&r2=1579984&view=diff
==============================================================================
--- kafka/site/081/documentation.html (original)
+++ kafka/site/081/documentation.html Fri Mar 21 17:08:50 2014
@@ -57,6 +57,8 @@ Prior releases: <a href="/07/documentati
                      <li><a href="#basic_ops_consumer_lag">Checking consumer position</a>
                      <li><a href="#basic_ops_mirror_maker">Mirroring data between clusters</a>
                      <li><a href="#basic_ops_cluster_expansion">Expanding your cluster</a>
+                     <li><a href="#basic_ops_decommissioning_brokers">Decommissioning brokers</a>
+                     <li><a href="#basic_ops_increase_replication_factor">Increasing replication factor</a>
                 </ul>
              <li><a href="#datacenters">6.2 Datacenters</a>
              <li><a href="#config">6.3 Important Configs</a>

Modified: kafka/site/081/ops.html
URL: http://svn.apache.org/viewvc/kafka/site/081/ops.html?rev=1579984&r1=1579983&r2=1579984&view=diff
==============================================================================
--- kafka/site/081/ops.html (original)
+++ kafka/site/081/ops.html Fri Mar 21 17:08:50 2014
@@ -204,10 +204,10 @@ Reassignment of partition [foo1,0] compl
 Reassignment of partition [foo2,1] completed successfully 
 </pre>
 
-<h5>Decommissioning machines</h5>
+<h4><a id="basic_ops_decommissioning_brokers">Decommissioning brokers</a></h4>
 The partition reassignment tool does not have the ability to automatically generate a reassignment plan for decommissioning brokers yet. As such, the admin has to come up with a reassignment plan to move the replica for all partitions hosted on the broker to be decommissioned, to the rest of the brokers. This can be relatively tedious as the reassignment needs to ensure that all the replicas are not moved from the decommissioned broker to only one other broker. To make this process effortless, we plan to add tooling support for decommissioning brokers in 0.8.2.
 
-<h5>Increasing replication factor of an existing partition</h5>
+<h4><a id="basic_ops_increase_replication_factor">Increasing replication factor</a></h4>
 Increasing the replication factor of an existing partition is easy. Just specify the extra replicas in the custom reassignment json file and use it with the --execute option to increase the replication factor of the specified partitions. 
 <p>
 For instance, the following example increases the replication factor of partition 0 of topic foo from 1 to 3. Before increasing the replication factor, the partition's only replica existed on broker 5. As part of increasing the replication factor, we will add more replicas on brokers 6 and 7.