Author: junrao
Date: Tue Jun  4 05:01:26 2013
New Revision: 1489289

URL: http://svn.apache.org/r1489289
Log:
fix 0.7 download link and 0.8 configs

Modified:
    kafka/site/07/quickstart.html
    kafka/site/08/configuration.html

Modified: kafka/site/07/quickstart.html
URL: 
http://svn.apache.org/viewvc/kafka/site/07/quickstart.html?rev=1489289&r1=1489288&r2=1489289&view=diff
==============================================================================
--- kafka/site/07/quickstart.html (original)
+++ kafka/site/07/quickstart.html Tue Jun  4 05:01:26 2013
@@ -4,7 +4,7 @@
        
 <h3> Step 1: Download the code </h3>
 
-<a href="downloads.html" title="Kafka downloads">Download</a> a recent stable 
release.
+<a href="../downloads.html" title="Kafka downloads">Download</a> a recent 
stable release.
 
 <pre>
 <b>&gt; tar xzf kafka-&lt;VERSION&gt;.tgz</b>

Modified: kafka/site/08/configuration.html
URL: 
http://svn.apache.org/viewvc/kafka/site/08/configuration.html?rev=1489289&r1=1489288&r2=1489289&view=diff
==============================================================================
--- kafka/site/08/configuration.html (original)
+++ kafka/site/08/configuration.html Tue Jun  4 05:01:26 2013
@@ -252,6 +252,21 @@
       <td>2000</td>
       <td>How far a ZK follower can be behind a ZK leader</td>
     </tr>
+    <tr>
+      <td>controlled.shutdown.enable</td>
+      <td>false</td>
+      <td>Enable controlled shutdown of the broker. If enabled, the broker 
will move all leaders on it to some other brokers before shutting itself down. 
This reduces the unavailability window during shutdown.</td>
+    </tr>
+    <tr>
+      <td>controlled.shutdown.max.retries</td>
+      <td>3</td>
+      <td>Number of retries to complete the controlled shutdown 
successfully</td>
+    </tr>
+    <tr>
+      <td>controlled.shutdown.retry.backoff.ms</td>
+      <td>5000</td>
+      <td>Backoff time between two retries</td>
+    </tr>
 </tbody></table>
 
 
@@ -276,7 +291,7 @@
     </tr>
     <tr>
       <td>zookeeper.connect</td>
-      <td colspan="1">null</td>
+      <td colspan="1"></td>
       <td>Specifies the zookeeper connection string in the form 
hostname:port/chroot. Here the chroot is a base directory which is prepended to 
all path operations (this effectively namespaces all kafka znodes to allow 
sharing with other applications on the same zookeeper cluster.</td>
     </tr>
     <tr>
@@ -312,9 +327,9 @@
       <td>The frequency in ms that the consumer offsets are committed to 
zookeeper</td>
     </tr>
     <tr>
-      <td>queued.max.messages</td>
+      <td>queued.max.message.chunks</td>
       <td colspan="1">10</td>
-      <td>Max number of messages buffered for consumption</td>
+      <td>Max number of message chunks buffered for consumption. Each chunk 
can be up to fetch.message.max.bytes.</td>
     </tr>
     <tr>
       <td>rebalance.max.retries</td>


Reply via email to