Index: configuration08.html
===================================================================
--- configuration08.html	(revision 0)
+++ configuration08.html	(working copy)
@@ -0,0 +1,497 @@
+<!--#include virtual="includes/header.html" -->
+
+<h2> Configuration for Kafka 0.8 </h2>
+
+<h3> Important configuration properties for Kafka broker: </h3>
+
+<p>More details about server configuration can be found in the scala class <code>kafka.server.KafkaConfig</code>.</p> 
+
+<table class="data-table">
+<tbody><tr>
+      <th>Property</th>
+      <th>Default</th>
+      <th>Description</th>
+    </tr>
+    <tr>
+      <td>broker.id</td>
+      <td></td>
+      <td>The broker id for this server</td>
+      </tr>
+      <tr>
+      <td>log.dirs</td>
+      <td>"/tmp/kafka-logs"</td>
+      <td>The directories in which the log data is kept</td>
+    </tr>
+    <tr>
+      <td>zookeeper.connect</td>
+      <td>null</td>
+      <td>Zookeeper host string</td>
+    </tr>
+    <tr>
+      <td>message.max.bytes</td>
+      <td>
+        <span>1000000</span>
+     </td>
+      <td>The maximum size of message that the server can receive</td>
+    </tr>
+    <tr>
+      <td>num.network.threads</td>
+      <td>3</td>
+      <td>The number of network threads that the server uses for handling network requests</td>
+    </tr>
+    <tr>
+      <td>num.io.threads</td>
+      <td>8</td>
+      <td>The number of io threads that the server uses for carrying out network requests</td>
+    </tr>
+    <tr>
+      <td>queued.max.requests</td>
+      <td>500</td>
+      <td>The number of queued requests allowed before blocking the network threads</td>
+    </tr>
+    <tr>
+      <td>port</td>
+      <td>6667</td>
+      <td>The port to listen and accept connections on</td>
+    </tr>
+    <tr>
+      <td>host.name</td>
+      <td>null</td>
+      <td>
+        <p>Hostname of broker. If this is set, it will only bind to this address. If this is not set, it will bind to all interfaces, and publish one to ZK</p>
+     </td>
+    </tr>
+    <tr>
+      <td>socket.send.buffer.bytes</td>
+      <td>100 * 1024</td>
+      <td>The SO_SNDBUFF buffer of the socket sever sockets</td>
+    </tr>
+    <tr>
+      <td>socket.receive.buffer.bytes</td>
+      <td>100 * 1024</td>
+      <td>The SO_RCVBUFF buffer of the socket sever sockets</td>
+    </tr>
+    <tr>
+      <td>socket.request.max.bytes</td>
+      <td>100 * 1024 * 1024</td>
+      <td>The maximum number of bytes in a socket request</td>
+    </tr>
+    <tr>
+      <td>num.partitions</td>
+      <td>1</td>
+      <td>The default number of log partitions per topic</td>
+    </tr>
+    <tr>
+      <td>log.segment.bytes</td>
+      <td>1024 * 1024 * 1024</td>
+      <td>The maximum size of a single log file</td>
+    </tr>
+    <tr>
+      <td>log.segment.bytes.per.topic</td>
+      <td>""</td>
+      <td>The maximum size of a single log file for some specific topic</td>
+    </tr>
+    <tr>
+      <td>log.roll.hours</td>
+      <td>24 * 7</td>
+      <td>The maximum time before a new log segment is rolled out</td>
+    </tr>
+    <tr>
+      <td>log.roll.hours.per.topic</td>
+      <td>""</td>
+      <td>The number of hours before rolling out a new log segment for some specific topic</td>
+    </tr>
+    <tr>
+      <td>log.retention.hours</td>
+      <td>24 * 7</td>
+      <td>The number of hours to keep a log file before deleting it</td>
+    </tr>
+    <tr>
+      <td>log.retention.hours.per.topic</td>
+      <td>""</td>
+      <td>The number of hours to keep a log file before deleting it for some specific topic</td>
+    </tr>
+    <tr>
+      <td>log.retention.bytes</td>
+      <td>-1</td>
+      <td>The maximum size of the log before deleting it</td>
+    </tr>
+    <tr>
+      <td>log.retention.bytes.per.topic</td>
+      <td>""</td>
+      <td>The maximum size of the log for some specific topic before deleting it</td>
+    </tr>
+    <tr>
+      <td>log.cleanup.interval.mins</td>
+      <td>10</td>
+      <td>The frequency in minutes that the log cleaner checks whether any log is eligible for deletion</td>
+    </tr>
+    <tr>
+      <td>log.index.size.max.bytes</td>
+      <td>10 * 1024 * 1024</td>
+      <td>The maximum size in bytes of the offset index</td>
+    </tr>
+    <tr>
+      <td>log.index.interval.bytes</td>
+      <td>4096</td>
+      <td>The interval with which we add an entry to the offset index</td>
+    </tr>
+    <tr>
+      <td>log.flush.interval.messages</td>
+      <td>10000</td>
+      <td>The number of messages accumulated on a log partition before messages are flushed to disk</td>
+    </tr>
+    <tr>
+      <td>log.flush.interval.ms.per.topic</td>
+      <td>""</td>
+      <td>The maximum time in ms that a message in selected topics is kept in memory before flushed to disk, e.g., topic1:3000,topic2:6000</td>
+    </tr>
+    <tr>
+      <td>log.flush.scheduler.interval.ms</td>
+      <td>3000</td>
+      <td>The frequency in ms that the log flusher checks whether any log needs to be flushed to disk</td>
+    </tr>
+    <tr>
+      <td>log.flush.interval.ms</td>
+      <td>${<span>log.flush.scheduler.interval.ms}</span>
+     </td>
+      <td>The maximum time in ms that a message in any topic is kept in memory before flushed to disk</td>
+    </tr>
+    <tr>
+      <td>auto.create.topics.enable</td>
+      <td>true</td>
+      <td>Enable auto creation of topic on the server</td>
+    </tr>
+    <tr>
+      <td>controller.socket.timeout.ms</td>
+      <td>30000</td>
+      <td>The socket timeout for controller-to-broker channels</td>
+    </tr>
+    <tr>
+      <td>controller.message.queue.size</td>
+      <td>10</td>
+      <td>The buffer size for controller-to-broker-channels</td>
+    </tr>
+    <tr>
+      <td>default.replication.factor</td>
+      <td>1</td>
+      <td>Default replication factors for automatically created topics</td>
+    </tr>
+    <tr>
+      <td>replica.lag.time.max.ms</td>
+      <td>10000</td>
+      <td>If a follower hasn't sent any fetch requests during this time, the leader will remove the follower from isr</td>
+    </tr>
+    <tr>
+      <td>replica.lag.max.messages</td>
+      <td>4000</td>
+      <td>If the lag in messages between a leader and a follower exceeds this number, the leader will remove the follower from isr</td>
+    </tr>
+    <tr>
+      <td>replica.socket.timeout.ms</td>
+      <td>30 * 1000</td>
+      <td>The socket timeout for network requests</td>
+    </tr>
+    <tr>
+      <td>replica.socket.receive.buffer.bytes</td>
+      <td>64 * 1024</td>
+      <td>The socket receive buffer for network requests</td>
+    </tr>
+    <tr>
+      <td>replica.fetch.max.bytes</td>
+      <td>1024 * 1024</td>
+      <td>The number of byes of messages to attempt to fetch</td>
+    </tr>
+    <tr>
+      <td>replica.fetch.wait.max.ms</td>
+      <td>500</td>
+      <td>Max wait time for each fetcher request issued by follower replicas</td>
+    </tr>
+    <tr>
+      <td>replica.fetch.min.bytes</td>
+      <td>1</td>
+      <td>Minimum bytes expected for each fetch response. If not enough bytes, wait up to replicaMaxWaitTimeMs</td>
+    </tr>
+    <tr>
+      <td>num.replica.fetchers</td>
+      <td>1</td>
+      <td>
+        <p>Number of fetcher threads used to replicate messages from a source broker. Increasing this value can increase the degree of I/O parallelism in the follower broker.</p>
+     </td>
+    </tr>
+    <tr>
+      <td>replica.high.watermark.checkpoint.interval.ms</td>
+      <td>5000L</td>
+      <td>The frequency with which the high watermark is saved out to disk</td>
+    </tr>
+    <tr>
+      <td>fetch.purgatory.purge.interval.requests</td>
+      <td>10000</td>
+      <td>The purge interval (in number of requests) of the fetch request purgatory</td>
+    </tr>
+    <tr>
+      <td>producer.purgatory.purge.interval.requests</td>
+      <td>10000</td>
+      <td>The purge interval (in number of requests) of the producer request purgatory</td>
+    </tr>
+    <tr>
+      <td>zookeeper.session.timeout.ms</td>
+      <td>6000</td>
+      <td>Zookeeper session timeout</td>
+    </tr>
+    <tr>
+      <td>zookeeper.connection.timeout.ms</td>
+      <td>${zookeeper.session.timeout.ms}</td>
+      <td>The max time that the client waits to establish a connection to zookeeper</td>
+    </tr>
+    <tr>
+      <td>zookeeper.sync.time.ms</td>
+      <td>2000</td>
+      <td>How far a ZK follower can be behind a ZK leader</td>
+    </tr>
+</tbody></table>
+
+
+<h3> Important configuration properties for the high-level consumer: </h3>
+
+<p>More details about consumer configuration can be found in the scala class <code>kafka.consumer.ConsumerConfig</code>.</p> 
+
+<table class="data-table">
+<tbody><tr>
+        <th>Property</th>
+        <th>Default</th>
+        <th>Description</th>
+</tr>
+    <tr>
+      <td>group.id</td>
+      <td colspan="1"></td>
+      <td>A string that uniquely identifies a set of consumers within the same consumer group</td>
+    </tr>
+    <tr>
+      <td>zookeeper.connect</td>
+      <td colspan="1">null</td>
+      <td>Zookeeper host string</td>
+    </tr>
+    <tr>
+      <td>consumer.id</td>
+      <td colspan="1">null</td>
+      <td>
+        <p>Generated automatically if not set.</p>
+     </td>
+    </tr>
+    <tr>
+      <td>socket.timeout.ms</td>
+      <td colspan="1">30 * 1000</td>
+      <td>The socket timeout for network requests. The actual timeout set will be max.fetch.wait + socket.timeout.ms.</td>
+    </tr>
+    <tr>
+      <td>socket.receive.buffer.bytes</td>
+      <td colspan="1">64 * 1024</td>
+      <td>The socket receive buffer for network requests</td>
+    </tr>
+    <tr>
+      <td>fetch.message.max.bytes</td>
+      <td colspan="1">1024 * 1024</td>
+      <td>The number of byes of messages to attempt to fetch</td>
+    </tr>
+    <tr>
+      <td>auto.commit.enable</td>
+      <td colspan="1">true</td>
+      <td>If true, periodically commit to zookeeper the offset of messages already fetched by the consumer</td>
+    </tr>
+    <tr>
+      <td>auto.commit.interval.ms</td>
+      <td colspan="1">60 * 1000</td>
+      <td>The frequency in ms that the consumer offsets are committed to zookeeper</td>
+    </tr>
+    <tr>
+      <td>queued.max.messages</td>
+      <td colspan="1">10</td>
+      <td>Max number of messages buffered for consumption</td>
+    </tr>
+    <tr>
+      <td>rebalance.max.retries</td>
+      <td colspan="1">4</td>
+      <td>Max number of retries during rebalance</td>
+    </tr>
+    <tr>
+      <td>fetch.min.bytes</td>
+      <td colspan="1">1</td>
+      <td>The minimum amount of data the server should return for a fetch request. If insufficient data is available the request will block</td>
+    </tr>
+    <tr>
+      <td>fetch.wait.max.ms</td>
+      <td colspan="1">100</td>
+      <td>The maximum amount of time the server will block before answering the fetch request if there isn't sufficient data to immediately satisfy fetch.min.bytes</td>
+    </tr>
+    <tr>
+      <td>rebalance.backoff.ms</td>
+      <td>${zookeeper.sync.time.ms}</td>
+      <td>Backoff time between retries during rebalance</td>
+    </tr>
+    <tr>
+      <td>refresh.leader.backoff.ms</td>
+      <td colspan="1">200</td>
+      <td>Backoff time to refresh the leader of a partition after it loses the current leader</td>
+    </tr>
+    <tr>
+      <td>auto.offset.reset</td>
+      <td colspan="1">"smallest"</td>
+      <td>
+        <p>What to do if an offset is out of range:<br/>* smallest : automatically reset the offset to the smallest offset<br/>* largest : automatically reset the offset to the largest offset<br/>* anything else: throw exception to the consumer</p>
+     </td>
+    </tr>
+    <tr>
+      <td>consumer.timeout.ms</td>
+      <td colspan="1">-1</td>
+      <td>Throw a timeout exception to the consumer if no message is available for consumption after the specified interval</td>
+    </tr>
+    <tr>
+      <td>client.id</td>
+      <td colspan="1">${group.id}</td>
+      <td>Client id is specified by the kafka consumer client, used to distinguish different clients</td>
+    </tr>
+    <tr>
+      <td>zookeeper.session.timeout.ms </td>
+      <td colspan="1">6000</td>
+      <td>Zookeeper session timeout</td>
+    </tr>
+    <tr>
+      <td>zookeeper.connection.timeout.ms</td>
+      <td colspan="1">${<span>zookeeper.session.timeout.ms}</span>
+     </td>
+      <td>The max time that the client waits to establish a connection to zookeeper</td>
+    </tr>
+    <tr>
+      <td>zookeeper.sync.time.ms </td>
+      <td colspan="1">2000</td>
+      <td>How far a ZK follower can be behind a ZK leader</td>
+    </tr>
+</tbody></table>
+
+
+<h3> Important configuration properties for the producer: </h3>
+
+<p>More details about producer configuration can be found in the scala class <code>kafka.producer.ProducerConfig</code>.</p> 
+
+<table class="data-table">
+<tbody><tr>
+        <th>Property</th>
+        <th>Default</th>
+        <th>Description</th>
+      </tr>
+    <tr>
+      <td>metadata.broker.list</td>
+      <td colspan="1"></td>
+      <td>
+        <p>This is for bootstrapping and the producer will only use it for getting metadata (topics, partitions and replicas). The socket connections for sending the actual data will be established based on the broker information returned in the metadata. The format is host1:port1,host2:port2, and the list can be a subset of brokers or a VIP pointing to a subset of brokers.</p>
+     </td>
+    </tr>
+    <tr>
+      <td>partitioner.class</td>
+      <td colspan="1">"kafka.producer.DefaultPartitioner"</td>
+      <td>The partitioner class for partitioning events amongst sub-topics</td>
+    </tr>
+    <tr>
+      <td>producer.type</td>
+      <td colspan="1">"sync"</td>
+      <td>
+        <p>This parameter specifies whether the messages are sent asynchronously or not. Valid values are - async for asynchronous send and sync for synchronous send</p>
+     </td>
+    </tr>
+    <tr>
+      <td>compression.codec</td>
+      <td colspan="1">"none"</td>
+      <td>
+        <p>This parameter allows you to specify the compression codec for all data generated by this producer. The default is NoCompressionCodec</p>
+     </td>
+    </tr>
+    <tr>
+      <td>compressed.topics</td>
+      <td colspan="1">null</td>
+      <td>
+        <p>This parameter allows you to set whether compression should be turned on for particular topics. If the compression codec is anything other than NoCompressionCodec, enable compression only for specified topics if any. If the list of compressed topics is empty, then enable the specified compression codec for all topics. If the compression codec is NoCompressionCodec, compression is disabled for all topics</p>
+     </td>
+    </tr>
+    <tr>
+      <td>message.send.max.retries</td>
+      <td colspan="1">3</td>
+      <td>
+        <p>The leader may be unavailable transiently, which can fail the sending of a message. This property specifies the number of retries when such failures occur.</p>
+     </td>
+    </tr>
+    <tr>
+      <td>retry.backoff.ms</td>
+      <td colspan="1">100</td>
+      <td>
+        <p>Before each retry, the producer refreshes the metadata of relevant topics. Since leader election takes a bit of time, this property specifies the amount of time that the producer waits before refreshing the metadata.</p>
+     </td>
+    </tr>
+    <tr>
+      <td>topic.metadata.refresh.interval.ms</td>
+      <td colspan="1">600* 1000</td>
+      <td>
+        <p>The producer generally refreshes the topic metadata from brokers when there is a failure (partition missing, leader not available...). It will also poll regularly (default: every 10min so 600000ms). If you set this to a negative value, metadata will only get refreshed on failure. If you set this to zero, the metadata will get refreshed after each message sent (not recommended). Important note: the refresh happen only AFTER the message is sent, so if the producer never sends a message the metadata is never refreshed</p>
+     </td>
+    </tr>
+    <tr>
+      <td>queue.buffering.max.ms</td>
+      <td colspan="1">5000</td>
+      <td>Maximum time, in milliseconds, for buffering data on the producer queue</td>
+    </tr>
+    <tr>
+      <td>queue.buffering.max.messages</td>
+      <td colspan="1">10000</td>
+      <td>The maximum size of the blocking queue for buffering on the producer</td>
+    </tr>
+    <tr>
+      <td>queue.enqueue.timeout.ms</td>
+      <td colspan="1">-1</td>
+      <td>
+        <p>Timeout for event enqueue:<br/> * 0: events will be enqueued immediately or dropped if the queue is full<br/> * -ve: enqueue will block indefinitely if the queue is full<br/> * +ve: enqueue will block up to this many milliseconds if the queue is full</p>
+     </td>
+    </tr>
+    <tr>
+      <td>batch.num.messages</td>
+      <td colspan="1">200</td>
+      <td>The number of messages batched at the producer</td>
+    </tr>
+    <tr>
+      <td>serializer.class</td>
+      <td colspan="1">"kafka.serializer.DefaultEncoder"</td>
+      <td>The serializer class for values</td>
+    </tr>
+    <tr>
+      <td>key.serializer.class</td>
+      <td colspan="1">${serializer.class}</td>
+      <td>The serializer class for keys (defaults to the same as for values)</td>
+    </tr>
+    <tr>
+      <td>send.buffer.bytes</td>
+      <td colspan="1">100 * 1024</td>
+      <td>Socket write buffer size</td>
+    </tr>
+    <tr>
+      <td>client.id</td>
+      <td colspan="1">""</td>
+      <td>The client application sending the producer requests</td>
+    </tr>
+    <tr>
+      <td>request.required.acks</td>
+      <td colspan="1">0</td>
+      <td>
+        <p>The required acks of the producer requests - negative value means ack after the replicas in ISR have caught up to the leader's offset corresponding to this produce request.</p>
+     </td>
+    </tr>
+    <tr>
+      <td>request.timeout.ms</td>
+      <td colspan="1">1500</td>
+      <td>The ack timeout of the producer requests. Value must be non-negative and non-zero</td>
+    </tr>
+</tbody></table>
+
+
+		</div>
+	
+
+</div></body></html>
Index: configuration.html
===================================================================
--- configuration.html	(revision 1471549)
+++ configuration.html	(working copy)
@@ -1,345 +1,7 @@
 <!--#include virtual="includes/header.html" -->
+         
+ <h2> Configuration </h2>
+ <a href="http://kafka.apache.org/configuration07.html">Kafka 0.7 Configuration</a> <br>
+ <a href="http://kafka.apache.org/configuration08.html">Kafka 0.8 Configuration</a>
 
-<h2> Configuration </h2>
 
-<h3> Important configuration properties for Kafka broker: </h3>
-
-<p>More details about server configuration can be found in the scala class <code>kafka.server.KafkaConfig</code>.</p> 
-
-<table class="data-table">
-<tr>
-        <th>name</th>
-        <th>default</th>
-        <th>description</th>
-</tr>
-<tr>
-    <td><code>brokerid</code></td>
-    <td>none</td>
-    <td>Each broker is uniquely identified by an id. This id serves as the brokers "name", and allows the broker to be moved to a different host/port without confusing consumers.</td>
-</tr>
-<tr>
-    <td><code>enable.zookeeper</code></td>
-    <td>true</td>
-    <td>enable zookeeper registration in the server</td>
-</tr>
-<tr>
-     <td><code>log.flush.interval</code></td>
-     <td>500</td>
-     <td>Controls the number of messages accumulated in each topic (partition) before the data is flushed to disk and made available to consumers.</td>  
-</tr>
-<tr>
-    <td><code>log.default.flush.scheduler.interval.ms</code></td>
-    <td>3000</td>
-    <td>Controls the interval at which logs are checked to see if they need to be flushed to disk. A background thread will run at a frequency specified by this parameter and will check each log to see if it has exceeded its flush.interval time, and if so it will flush it.</td>
-</tr>
-<tr>
-    <td><code>log.default.flush.interval.ms</code> </td>
-    <td>log.default.flush.scheduler.interval.ms</td>
-    <td>Controls the maximum time that a message in any topic is kept in memory before flushed to disk. The value only makes sense if it's a multiple of <code>log.default.flush.scheduler.interval
-.ms</code></td>
-</tr>
-<tr>
-    <td><code>topic.flush.intervals.ms</code></td>
-    <td>none</td>
-    <td>Per-topic overrides for <code>log.default.flush.interval.ms</code>. Controls the maximum time that a message in selected topics is kept in memory before flushed to disk. The per-topic value only makes sense if it's a multiple of <code>log.default.flush.scheduler.interval.ms</code>. E.g., topic1:1000,topic2:2000</td>
-</tr>
-<tr>
-    <td><code>log.retention.hours</code></td>
-    <td>168</td>
-    <td>Controls how long a log file is retained.</td>
-</tr>
-<tr>
-    <td><code>topic.log.retention.hours</code></td>
-    <td>none</td>
-    <td>Topic-specific retention time that overrides <code>log.retention.hours</code>, e.g., topic1:10,topic2:20</td>
-</tr>
-<tr>
-    <td><code>log.retention.size</code></td>
-    <td>-1</td>
-    <td>the maximum size of the log before deleting it. This controls how large a log is allowed to grow</td>
-</tr>
-<tr>
-    <td><code>log.cleanup.interval.mins</code></td>
-    <td>10</td>
-    <td>Controls how often the log cleaner checks logs eligible for deletion. A log file is eligible for deletion if it hasn't been modified for <code>log.retention.hours</code> hours.</td>
-</tr>
-<tr>
-    <td><code>log.dir</code></td>
-    <td>none</td>
-    <td>Specifies the root directory in which all log data is kept.</td>
-</tr>
-<tr>
-    <td><code>log.file.size</code></td>
-    <td>1*1024*1024*1024</td>
-    <td>Controls the maximum size of a single log file.</td>
-</tr>
-<tr>
-    <td><code>max.socket.request.bytes<code></td>
-    <td>104857600</td>
-    <td>the maximum number of bytes in a socket request</td>
-</tr>
-<tr>
-    <td><code>monitoring.period.secs<code></td>
-    <td>600</td>
-    <td>the interval in which to measure performance statistics</td>
-</tr>
-<tr>
-    <td><code>num.threads</code></td>
-    <td>Runtime.getRuntime().availableProcessors</td>
-    <td>Controls the number of worker threads in the broker to serve requests.</td>
-</tr>
-<tr>
-    <td><code>num.partitions</code></td>
-    <td>1</td>
-    <td>Specifies the default number of partitions per topic.</td>
-</tr>
-<tr>
-    <td><code>socket.send.buffer</code></td>
-    <td>102400</td>
-    <td>the SO_SNDBUFF buffer of the socket sever sockets</td>
-</tr>
-<tr>
-    <td><code>socket.receive.buffer</code></td>
-    <td>102400</td>
-    <td>the SO_RCVBUFF buffer of the socket sever sockets</td>
-</tr>
-<tr>
-    <td><code>topic.partition.count.map</code></td>
-    <td>none</td>
-    <td>Override parameter to control the number of partitions for selected topics. E.g., topic1:10,topic2:20</td>
-</tr>
-<tr>
-    <td><code>zk.connect</code></td>
-    <td>localhost:2182/kafka</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>
-    <td><code>zk.connectiontimeout.ms</code> </td>
-    <td>6000</td>
-    <td>Specifies the max time that the client waits to establish a connection to zookeeper.</td>
-</tr>
-<tr>
-    <td><code>zk.sessiontimeout.ms</code> </td>
-    <td>6000</td>
-    <td>The zookeeper session timeout.</td>
-</tr>
-<tr>
-    <td><code>zk.synctime.ms</code></td>
-    <td>2000</td>
-    <td>Max time for how far a ZK follower can be behind a ZK leader</td>
-</tr>
-</table>
-
-
-<h3> Important configuration properties for the high-level consumer: </h3>
-
-<p>More details about consumer configuration can be found in the scala class <code>kafka.consumer.ConsumerConfig</code>.</p> 
-
-<table class="data-table">
-<tr>
-        <th>property</th>
-        <th>default</th>
-        <th>description</th>
-</tr>
-<tr>
-    <td><code>groupid</code></td>
-    <td>groupid</td>
-    <td>is a string that uniquely identifies a set of consumers within the same consumer group. </td>
-</tr>
-<tr>
-    <td><code>socket.timeout.ms</code></td>
-    <td>30000</td>
-    <td>controls the socket timeout for network requests </td>
-</tr>
-<tr>
-    <td><code>socket.buffersize</code></td>
-    <td>64*1024</td>
-    <td>controls the socket receive buffer for network requests</td>
-</tr>
-<tr>
-    <td><code>fetch.size</code></td>
-    <td>300 * 1024</td>
-    <td>controls the number of bytes of messages to attempt to fetch in one request to the Kafka server</td>
-</tr>
-<tr>
-    <td><code>backoff.increment.ms</code></td>
-    <td>1000</td>
-    <td>This parameter avoids repeatedly polling a broker node which has no new data. We will backoff every time we get an empty set 
-from the broker for this time period</td>
-</tr>
-<tr>
-    <td><code>queuedchunks.max</code></td>
-    <td>100</td>
-    <td>the high level consumer buffers the messages fetched from the server internally in blocking queues. This parameter controls
-the size of those queues</td>
-</tr>
-<tr>
-    <td><code>autocommit.enable</code></td>
-    <td>true</td>
-    <td>if set to true, the consumer periodically commits to zookeeper the latest consumed offset of each partition. </td>
-</tr>
-<tr>
-    <td><code>autocommit.interval.ms</code> </td>
-    <td>10000</td>
-    <td>is the frequency that the consumed offsets are committed to zookeeper. </td>
-</tr>
-<tr>
-    <td><code>autooffset.reset</code></td>
-    <td>smallest</td>
-    <td><ul>
- <li> <code>smallest</code>: automatically reset the offset to the smallest offset available on the broker.</li>
- <li> <code>largest</code> : automatically reset the offset to the largest offset available on the broker.</li>
- <li> <code>anything else</code>: throw an exception to the consumer.</li>
-</ul>
-</td>
-</tr>
-<tr>
-    <td><code>consumer.timeout.ms</code></td>
-    <td>-1</td>
-    <td>By default, this value is -1 and a consumer blocks indefinitely if no new message is available for consumption. By setting the value to a positive integer, a timeout exception is thrown to the consumer if no message is available for consumption after the specified timeout value.</td>
-</tr>
-<tr>
-    <td><code>rebalance.retries.max</code> </td>
-    <td>4</td>
-    <td>max number of retries during rebalance</td>
-</tr>
-<tr>
-    <td><code>mirror.topics.whitelist</code></td>
-    <td>""</td>
-    <td>Whitelist of topics for this mirror's embedded consumer to consume. At most one of whitelist/blacklist may be specified.</td>
-</tr>
-<tr>
-    <td><code>mirror.topics.blacklist</code></td>
-    <td>""</td>
-    <td>Topics to skip mirroring. At most one of whitelist/blacklist may be specified</td>
-</tr>
-<tr>
-    <td><code>mirror.consumer.numthreads</code></td>
-    <td>4</td>
-    <td>The number of threads to be used per topic for the mirroring consumer, by default</td>
-</tr>
-</table>
-
-
-<h3> Important configuration properties for the producer: </h3>
-
-<p>More details about producer configuration can be found in the scala class <code>kafka.producer.ProducerConfig</code>.</p> 
-
-<table class="data-table">
-<tr>
-        <th>property</th>
-        <th>default</th>
-        <th>description</th>
-</tr>
-<tr>
-    <td><code>serializer.class</code></td>
-    <td>kafka.serializer.DefaultEncoder. This is a no-op encoder. The serialization of data to Message should be handled outside the Producer</td>
-    <td>class that implements the <code>kafka.serializer.Encoder&lt;T&gt;</code> interface, used to encode data of type T into a Kafka message </td>
-</tr>
-<tr>
-    <td><code>partitioner.class</code></td>
-    <td><code>kafka.producer.DefaultPartitioner&lt;T&gt;</code> - uses the partitioning strategy <code>hash(key)%num_partitions</code>. If key is null, then it picks a random partition. </td>
-    <td>class that implements the <code>kafka.producer.Partitioner&lt;K&gt;</code>, used to supply a custom partitioning strategy on the message key (of type K) that is specified through the <code>ProducerData&lt;K, T&gt;</code> object in the <code>kafka.producer.Producer&lt;T&gt;</code> send API</td>
-</tr>
-<tr>
-    <td><code>producer.type</code></td>
-    <td>sync</td>
-    <td>this parameter specifies whether the messages are sent asynchronously or not. Valid values are - <ul><li><code>async</code> for asynchronous batching send through <code>kafka.producer.AyncProducer</code></li><li><code>sync</code> for synchronous send through <code>kafka.producer.SyncProducer</code></li></ul></td>
-</tr>
-<tr>
-    <td><code>broker.list</code></td>
-    <td>null. Either this parameter or zk.connect needs to be specified by the user.</td>
-    <td>For bypassing zookeeper based auto partition discovery, use this config to pass in static broker and per-broker partition information. Format-<code>brokerid1:host1:port1, brokerid2:host2:port2.</code>
-	If you use this option, the <code>partitioner.class</code> will be ignored and each producer request will be routed to a random broker partition.</td>
-</tr>
-<tr>
-    <td><code>zk.connect</code></td>
-    <td>null. Either this parameter or broker.partition.info needs to be specified by the user</td>
-    <td>For using the zookeeper based automatic broker discovery, use this config to pass in the zookeeper connection url to the zookeeper cluster where the Kafka brokers are registered.</td>
-</tr>
-<tr>
-    <td><code>buffer.size</code></td>
-    <td>102400</td>
-    <td>the socket buffer size, in bytes</td>
-</tr>
-<tr>
-    <td><code>connect.timeout.ms</code></td>
-    <td>5000</td>
-    <td>the maximum time spent by <code>kafka.producer.SyncProducer</code> trying to connect to the kafka broker. Once it elapses, the producer throws an ERROR and stops.</td>
-</tr>
-<tr>
-    <td><code>socket.timeout.ms</code></td>
-    <td>30000</td>
-    <td>The socket timeout in milliseconds</td>
-</tr>
-<tr>
-    <td><code>reconnect.interval</code> </td>
-    <td>30000</td>
-    <td>the number of produce requests after which <code>kafka.producer.SyncProducer</code> tears down the socket connection to the broker and establishes it again</td>
-</tr>
-<tr>
-    <td><code>max.message.size</code> </td>
-    <td>1000000</td>
-    <td>the maximum number of bytes that the kafka.producer.SyncProducer can send as a single message payload</td>
-</tr>
-<tr>
-    <td><code>compression.codec</code></td>
-    <td>0 (No compression)</td>
-    <td>This parameter allows you to specify the compression codec for all data generated by this producer.</td>
-</tr>
-<tr>
-    <td><code>compressed.topics</code></td>
-    <td>null</td>
-    <td>This parameter allows you to set whether compression should be turned on for particular topics. If the compression codec is anything other than NoCompressionCodec, enable compression only for specified topics if any. If the list of compressed topics is empty, then enable the specified compression codec for all topics. If the compression codec is NoCompressionCodec, compression is disabled for all topics. </td>
-</tr>
-<tr>
-    <td><code>zk.read.num.retries</code></td>
-    <td>3</td>
-    <td>The producer using the zookeeper software load balancer maintains a ZK cache that gets updated by the zookeeper watcher listeners. During some events like a broker bounce, the producer ZK cache can get into an inconsistent state, for a small time period. In this time period, it could end up picking a broker partition that is unavailable. When this happens, the ZK cache needs to be updated. This parameter specifies the number of times the producer attempts to refresh this ZK cache.</td>
-</tr>
-<tr>
-	<td colspan="3" style="text-align: center">
-	Options for Asynchronous Producers (<code>producer.type=async</code>)
-	</td>
-</tr>
-<tr>
-    <td><code>queue.time</code></td>
-    <td>5000</td>
-    <td>maximum time, in milliseconds, for buffering data on the producer queue. After it elapses, the buffered data in the producer queue is dispatched to the <code>event.handler</code>.</td>
-</tr>
-<tr>
-    <td><code>queue.size</code></td>
-    <td>10000</td>
-    <td>the maximum size of the blocking queue for buffering on the <code> kafka.producer.AsyncProducer</code></td>
-</tr>
-<tr>
-    <td><code>batch.size</code> </td>
-    <td>200</td>
-    <td>the number of messages batched at the producer, before being dispatched to the <code>event.handler</code></td>
-</tr>
-<tr>
-    <td><code>event.handler</code></td>
-    <td><code>kafka.producer.async.EventHandler&lt;T&gt;</code></td>
-    <td>the class that implements <code>kafka.producer.async.IEventHandler&lt;T&gt;</code> used to dispatch a batch of produce requests, using an instance of <code>kafka.producer.SyncProducer</code>. 
-</td>
-</tr>
-<tr>
-    <td><code>event.handler.props</code></td>
-    <td>null</td>
-    <td>the <code>java.util.Properties()</code> object used to initialize the custom <code>event.handler</code> through its <code>init()</code> API</td>
-</tr>
-<tr>
-    <td><code>callback.handler</code></td>
-    <td><code>null</code></td>
-    <td>the class that implements <code>kafka.producer.async.CallbackHandler&lt;T&gt;</code> used to inject callbacks at various stages of the <code>kafka.producer.AsyncProducer</code> pipeline.
-</td>
-</tr>
-<tr>
-    <td><code>callback.handler.props</code></td>
-    <td>null</td>
-    <td>the <code>java.util.Properties()</code> object used to initialize the custom <code>callback.handler</code> through its <code>init()</code> API</td>
-</tr>
-</table>
-
-
-<!--#include virtual="includes/footer.html" -->
Index: configuration07.html
===================================================================
--- configuration07.html	(revision 0)
+++ configuration07.html	(working copy)
@@ -0,0 +1,345 @@
+<!--#include virtual="includes/header.html" -->
+
+<h2> Configuration for Kafka 0.7</h2>
+
+<h3> Important configuration properties for Kafka broker: </h3>
+
+<p>More details about server configuration can be found in the scala class <code>kafka.server.KafkaConfig</code>.</p> 
+
+<table class="data-table">
+<tr>
+        <th>name</th>
+        <th>default</th>
+        <th>description</th>
+</tr>
+<tr>
+    <td><code>brokerid</code></td>
+    <td>none</td>
+    <td>Each broker is uniquely identified by an id. This id serves as the brokers "name", and allows the broker to be moved to a different host/port without confusing consumers.</td>
+</tr>
+<tr>
+    <td><code>enable.zookeeper</code></td>
+    <td>true</td>
+    <td>enable zookeeper registration in the server</td>
+</tr>
+<tr>
+     <td><code>log.flush.interval</code></td>
+     <td>500</td>
+     <td>Controls the number of messages accumulated in each topic (partition) before the data is flushed to disk and made available to consumers.</td>  
+</tr>
+<tr>
+    <td><code>log.default.flush.scheduler.interval.ms</code></td>
+    <td>3000</td>
+    <td>Controls the interval at which logs are checked to see if they need to be flushed to disk. A background thread will run at a frequency specified by this parameter and will check each log to see if it has exceeded its flush.interval time, and if so it will flush it.</td>
+</tr>
+<tr>
+    <td><code>log.default.flush.interval.ms</code> </td>
+    <td>log.default.flush.scheduler.interval.ms</td>
+    <td>Controls the maximum time that a message in any topic is kept in memory before flushed to disk. The value only makes sense if it's a multiple of <code>log.default.flush.scheduler.interval
+.ms</code></td>
+</tr>
+<tr>
+    <td><code>topic.flush.intervals.ms</code></td>
+    <td>none</td>
+    <td>Per-topic overrides for <code>log.default.flush.interval.ms</code>. Controls the maximum time that a message in selected topics is kept in memory before flushed to disk. The per-topic value only makes sense if it's a multiple of <code>log.default.flush.scheduler.interval.ms</code>. E.g., topic1:1000,topic2:2000</td>
+</tr>
+<tr>
+    <td><code>log.retention.hours</code></td>
+    <td>168</td>
+    <td>Controls how long a log file is retained.</td>
+</tr>
+<tr>
+    <td><code>topic.log.retention.hours</code></td>
+    <td>none</td>
+    <td>Topic-specific retention time that overrides <code>log.retention.hours</code>, e.g., topic1:10,topic2:20</td>
+</tr>
+<tr>
+    <td><code>log.retention.size</code></td>
+    <td>-1</td>
+    <td>the maximum size of the log before deleting it. This controls how large a log is allowed to grow</td>
+</tr>
+<tr>
+    <td><code>log.cleanup.interval.mins</code></td>
+    <td>10</td>
+    <td>Controls how often the log cleaner checks logs eligible for deletion. A log file is eligible for deletion if it hasn't been modified for <code>log.retention.hours</code> hours.</td>
+</tr>
+<tr>
+    <td><code>log.dir</code></td>
+    <td>none</td>
+    <td>Specifies the root directory in which all log data is kept.</td>
+</tr>
+<tr>
+    <td><code>log.file.size</code></td>
+    <td>1*1024*1024*1024</td>
+    <td>Controls the maximum size of a single log file.</td>
+</tr>
+<tr>
+    <td><code>max.socket.request.bytes<code></td>
+    <td>104857600</td>
+    <td>the maximum number of bytes in a socket request</td>
+</tr>
+<tr>
+    <td><code>monitoring.period.secs<code></td>
+    <td>600</td>
+    <td>the interval in which to measure performance statistics</td>
+</tr>
+<tr>
+    <td><code>num.threads</code></td>
+    <td>Runtime.getRuntime().availableProcessors</td>
+    <td>Controls the number of worker threads in the broker to serve requests.</td>
+</tr>
+<tr>
+    <td><code>num.partitions</code></td>
+    <td>1</td>
+    <td>Specifies the default number of partitions per topic.</td>
+</tr>
+<tr>
+    <td><code>socket.send.buffer</code></td>
+    <td>102400</td>
+    <td>the SO_SNDBUFF buffer of the socket sever sockets</td>
+</tr>
+<tr>
+    <td><code>socket.receive.buffer</code></td>
+    <td>102400</td>
+    <td>the SO_RCVBUFF buffer of the socket sever sockets</td>
+</tr>
+<tr>
+    <td><code>topic.partition.count.map</code></td>
+    <td>none</td>
+    <td>Override parameter to control the number of partitions for selected topics. E.g., topic1:10,topic2:20</td>
+</tr>
+<tr>
+    <td><code>zk.connect</code></td>
+    <td>localhost:2182/kafka</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>
+    <td><code>zk.connectiontimeout.ms</code> </td>
+    <td>6000</td>
+    <td>Specifies the max time that the client waits to establish a connection to zookeeper.</td>
+</tr>
+<tr>
+    <td><code>zk.sessiontimeout.ms</code> </td>
+    <td>6000</td>
+    <td>The zookeeper session timeout.</td>
+</tr>
+<tr>
+    <td><code>zk.synctime.ms</code></td>
+    <td>2000</td>
+    <td>Max time for how far a ZK follower can be behind a ZK leader</td>
+</tr>
+</table>
+
+
+<h3> Important configuration properties for the high-level consumer: </h3>
+
+<p>More details about consumer configuration can be found in the scala class <code>kafka.consumer.ConsumerConfig</code>.</p> 
+
+<table class="data-table">
+<tr>
+        <th>property</th>
+        <th>default</th>
+        <th>description</th>
+</tr>
+<tr>
+    <td><code>groupid</code></td>
+    <td>groupid</td>
+    <td>is a string that uniquely identifies a set of consumers within the same consumer group. </td>
+</tr>
+<tr>
+    <td><code>socket.timeout.ms</code></td>
+    <td>30000</td>
+    <td>controls the socket timeout for network requests </td>
+</tr>
+<tr>
+    <td><code>socket.buffersize</code></td>
+    <td>64*1024</td>
+    <td>controls the socket receive buffer for network requests</td>
+</tr>
+<tr>
+    <td><code>fetch.size</code></td>
+    <td>300 * 1024</td>
+    <td>controls the number of bytes of messages to attempt to fetch in one request to the Kafka server</td>
+</tr>
+<tr>
+    <td><code>backoff.increment.ms</code></td>
+    <td>1000</td>
+    <td>This parameter avoids repeatedly polling a broker node which has no new data. We will backoff every time we get an empty set 
+from the broker for this time period</td>
+</tr>
+<tr>
+    <td><code>queuedchunks.max</code></td>
+    <td>100</td>
+    <td>the high level consumer buffers the messages fetched from the server internally in blocking queues. This parameter controls
+the size of those queues</td>
+</tr>
+<tr>
+    <td><code>autocommit.enable</code></td>
+    <td>true</td>
+    <td>if set to true, the consumer periodically commits to zookeeper the latest consumed offset of each partition. </td>
+</tr>
+<tr>
+    <td><code>autocommit.interval.ms</code> </td>
+    <td>10000</td>
+    <td>is the frequency that the consumed offsets are committed to zookeeper. </td>
+</tr>
+<tr>
+    <td><code>autooffset.reset</code></td>
+    <td>smallest</td>
+    <td><ul>
+ <li> <code>smallest</code>: automatically reset the offset to the smallest offset available on the broker.</li>
+ <li> <code>largest</code> : automatically reset the offset to the largest offset available on the broker.</li>
+ <li> <code>anything else</code>: throw an exception to the consumer.</li>
+</ul>
+</td>
+</tr>
+<tr>
+    <td><code>consumer.timeout.ms</code></td>
+    <td>-1</td>
+    <td>By default, this value is -1 and a consumer blocks indefinitely if no new message is available for consumption. By setting the value to a positive integer, a timeout exception is thrown to the consumer if no message is available for consumption after the specified timeout value.</td>
+</tr>
+<tr>
+    <td><code>rebalance.retries.max</code> </td>
+    <td>4</td>
+    <td>max number of retries during rebalance</td>
+</tr>
+<tr>
+    <td><code>mirror.topics.whitelist</code></td>
+    <td>""</td>
+    <td>Whitelist of topics for this mirror's embedded consumer to consume. At most one of whitelist/blacklist may be specified.</td>
+</tr>
+<tr>
+    <td><code>mirror.topics.blacklist</code></td>
+    <td>""</td>
+    <td>Topics to skip mirroring. At most one of whitelist/blacklist may be specified</td>
+</tr>
+<tr>
+    <td><code>mirror.consumer.numthreads</code></td>
+    <td>4</td>
+    <td>The number of threads to be used per topic for the mirroring consumer, by default</td>
+</tr>
+</table>
+
+
+<h3> Important configuration properties for the producer: </h3>
+
+<p>More details about producer configuration can be found in the scala class <code>kafka.producer.ProducerConfig</code>.</p> 
+
+<table class="data-table">
+<tr>
+        <th>property</th>
+        <th>default</th>
+        <th>description</th>
+</tr>
+<tr>
+    <td><code>serializer.class</code></td>
+    <td>kafka.serializer.DefaultEncoder. This is a no-op encoder. The serialization of data to Message should be handled outside the Producer</td>
+    <td>class that implements the <code>kafka.serializer.Encoder&lt;T&gt;</code> interface, used to encode data of type T into a Kafka message </td>
+</tr>
+<tr>
+    <td><code>partitioner.class</code></td>
+    <td><code>kafka.producer.DefaultPartitioner&lt;T&gt;</code> - uses the partitioning strategy <code>hash(key)%num_partitions</code>. If key is null, then it picks a random partition. </td>
+    <td>class that implements the <code>kafka.producer.Partitioner&lt;K&gt;</code>, used to supply a custom partitioning strategy on the message key (of type K) that is specified through the <code>ProducerData&lt;K, T&gt;</code> object in the <code>kafka.producer.Producer&lt;T&gt;</code> send API</td>
+</tr>
+<tr>
+    <td><code>producer.type</code></td>
+    <td>sync</td>
+    <td>this parameter specifies whether the messages are sent asynchronously or not. Valid values are - <ul><li><code>async</code> for asynchronous batching send through <code>kafka.producer.AyncProducer</code></li><li><code>sync</code> for synchronous send through <code>kafka.producer.SyncProducer</code></li></ul></td>
+</tr>
+<tr>
+    <td><code>broker.list</code></td>
+    <td>null. Either this parameter or zk.connect needs to be specified by the user.</td>
+    <td>For bypassing zookeeper based auto partition discovery, use this config to pass in static broker and per-broker partition information. Format-<code>brokerid1:host1:port1, brokerid2:host2:port2.</code>
+	If you use this option, the <code>partitioner.class</code> will be ignored and each producer request will be routed to a random broker partition.</td>
+</tr>
+<tr>
+    <td><code>zk.connect</code></td>
+    <td>null. Either this parameter or broker.partition.info needs to be specified by the user</td>
+    <td>For using the zookeeper based automatic broker discovery, use this config to pass in the zookeeper connection url to the zookeeper cluster where the Kafka brokers are registered.</td>
+</tr>
+<tr>
+    <td><code>buffer.size</code></td>
+    <td>102400</td>
+    <td>the socket buffer size, in bytes</td>
+</tr>
+<tr>
+    <td><code>connect.timeout.ms</code></td>
+    <td>5000</td>
+    <td>the maximum time spent by <code>kafka.producer.SyncProducer</code> trying to connect to the kafka broker. Once it elapses, the producer throws an ERROR and stops.</td>
+</tr>
+<tr>
+    <td><code>socket.timeout.ms</code></td>
+    <td>30000</td>
+    <td>The socket timeout in milliseconds</td>
+</tr>
+<tr>
+    <td><code>reconnect.interval</code> </td>
+    <td>30000</td>
+    <td>the number of produce requests after which <code>kafka.producer.SyncProducer</code> tears down the socket connection to the broker and establishes it again</td>
+</tr>
+<tr>
+    <td><code>max.message.size</code> </td>
+    <td>1000000</td>
+    <td>the maximum number of bytes that the kafka.producer.SyncProducer can send as a single message payload</td>
+</tr>
+<tr>
+    <td><code>compression.codec</code></td>
+    <td>0 (No compression)</td>
+    <td>This parameter allows you to specify the compression codec for all data generated by this producer.</td>
+</tr>
+<tr>
+    <td><code>compressed.topics</code></td>
+    <td>null</td>
+    <td>This parameter allows you to set whether compression should be turned on for particular topics. If the compression codec is anything other than NoCompressionCodec, enable compression only for specified topics if any. If the list of compressed topics is empty, then enable the specified compression codec for all topics. If the compression codec is NoCompressionCodec, compression is disabled for all topics. </td>
+</tr>
+<tr>
+    <td><code>zk.read.num.retries</code></td>
+    <td>3</td>
+    <td>The producer using the zookeeper software load balancer maintains a ZK cache that gets updated by the zookeeper watcher listeners. During some events like a broker bounce, the producer ZK cache can get into an inconsistent state, for a small time period. In this time period, it could end up picking a broker partition that is unavailable. When this happens, the ZK cache needs to be updated. This parameter specifies the number of times the producer attempts to refresh this ZK cache.</td>
+</tr>
+<tr>
+	<td colspan="3" style="text-align: center">
+	Options for Asynchronous Producers (<code>producer.type=async</code>)
+	</td>
+</tr>
+<tr>
+    <td><code>queue.time</code></td>
+    <td>5000</td>
+    <td>maximum time, in milliseconds, for buffering data on the producer queue. After it elapses, the buffered data in the producer queue is dispatched to the <code>event.handler</code>.</td>
+</tr>
+<tr>
+    <td><code>queue.size</code></td>
+    <td>10000</td>
+    <td>the maximum size of the blocking queue for buffering on the <code> kafka.producer.AsyncProducer</code></td>
+</tr>
+<tr>
+    <td><code>batch.size</code> </td>
+    <td>200</td>
+    <td>the number of messages batched at the producer, before being dispatched to the <code>event.handler</code></td>
+</tr>
+<tr>
+    <td><code>event.handler</code></td>
+    <td><code>kafka.producer.async.EventHandler&lt;T&gt;</code></td>
+    <td>the class that implements <code>kafka.producer.async.IEventHandler&lt;T&gt;</code> used to dispatch a batch of produce requests, using an instance of <code>kafka.producer.SyncProducer</code>. 
+</td>
+</tr>
+<tr>
+    <td><code>event.handler.props</code></td>
+    <td>null</td>
+    <td>the <code>java.util.Properties()</code> object used to initialize the custom <code>event.handler</code> through its <code>init()</code> API</td>
+</tr>
+<tr>
+    <td><code>callback.handler</code></td>
+    <td><code>null</code></td>
+    <td>the class that implements <code>kafka.producer.async.CallbackHandler&lt;T&gt;</code> used to inject callbacks at various stages of the <code>kafka.producer.AsyncProducer</code> pipeline.
+</td>
+</tr>
+<tr>
+    <td><code>callback.handler.props</code></td>
+    <td>null</td>
+    <td>the <code>java.util.Properties()</code> object used to initialize the custom <code>callback.handler</code> through its <code>init()</code> API</td>
+</tr>
+</table>
+
+
+<!--#include virtual="includes/footer.html" -->
