You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by ju...@apache.org on 2015/11/18 03:44:57 UTC

[2/3] kafka-site git commit: upload latest 0.9.0 docs

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/introduction.html
----------------------------------------------------------------------
diff --git a/090/introduction.html b/090/introduction.html
index 7e0b150..e5b2e78 100644
--- a/090/introduction.html
+++ b/090/introduction.html
@@ -5,9 +5,9 @@
  The ASF licenses this file to You under the Apache License, Version 2.0
  (the "License"); you may not use this file except in compliance with
  the License.  You may obtain a copy of the License at
- 
+
     http://www.apache.org/licenses/LICENSE-2.0
- 
+
  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -15,7 +15,7 @@
  limitations under the License.
 -->
 
-<h3><a id="introduction">1.1 Introduction</a></h3>
+<h3><a id="introduction" href="#introduction">1.1 Introduction</a></h3>
 Kafka is a distributed, partitioned, replicated commit log service. It provides the functionality of a messaging system, but with a unique design.
 <p>
 What does all that mean?
@@ -35,7 +35,7 @@ So, at a high level, producers send messages over the network to the Kafka clust
 
 Communication between the clients and the servers is done with a simple, high-performance, language agnostic <a href="https://cwiki.apache.org/confluence/display/KAFKA/A+Guide+To+The+Kafka+Protocol">TCP protocol</a>. We provide a Java client for Kafka, but clients are available in <a href="https://cwiki.apache.org/confluence/display/KAFKA/Clients">many languages</a>.
 
-<h4>Topics and Logs</h4>
+<h4><a id="intro_topics" href="#intro_topics">Topics and Logs</a></h4>
 Let's first dive into the high-level abstraction Kafka provides&mdash;the topic.
 <p>
 A topic is a category or feed name to which messages are published. For each topic, the Kafka cluster maintains a partitioned log that looks like this:
@@ -50,19 +50,19 @@ In fact the only metadata retained on a per-consumer basis is the position of th
 <p>
 This combination of features means that Kafka consumers are very cheap&mdash;they can come and go without much impact on the cluster or on other consumers. For example, you can use our command line tools to "tail" the contents of any topic without changing what is consumed by any existing consumers.
 <p>
-The partitions in the log serve several purposes. First, they allow the log to scale beyond a size that will fit on a single server. Each individual partition must fit on the servers that host it, but a topic may have many partitions so it can handle an arbitrary amount of data. Second they act as the unit of parallelism&mdash;more on that in a bit. 
+The partitions in the log serve several purposes. First, they allow the log to scale beyond a size that will fit on a single server. Each individual partition must fit on the servers that host it, but a topic may have many partitions so it can handle an arbitrary amount of data. Second they act as the unit of parallelism&mdash;more on that in a bit.
 
-<h4>Distribution</h4>
+<h4><a id="intro_distribution" href="#intro_distribution">Distribution</a></h4>
 
 The partitions of the log are distributed over the servers in the Kafka cluster with each server handling data and requests for a share of the partitions. Each partition is replicated across a configurable number of servers for fault tolerance.
 <p>
 Each partition has one server which acts as the "leader" and zero or more servers which act as "followers". The leader handles all read and write requests for the partition while the followers passively replicate the leader. If the leader fails, one of the followers will automatically become the new leader. Each server acts as a leader for some of its partitions and a follower for others so load is well balanced within the cluster.
 
-<h4>Producers</h4>
+<h4><a id="intro_producers" href="#intro_producers">Producers</a></h4>
 
 Producers publish data to the topics of their choice. The producer is responsible for choosing which message to assign to which partition within the topic. This can be done in a round-robin fashion simply to balance load or it can be done according to some semantic partition function (say based on some key in the message). More on the use of partitioning in a second.
 
-<h4><a id="intro_consumers">Consumers</a></h4>
+<h4><a id="intro_consumers" href="#intro_consumers">Consumers</a></h4>
 
 Messaging traditionally has two models: <a href="http://en.wikipedia.org/wiki/Message_queue">queuing</a> and <a href="http://en.wikipedia.org/wiki/Publish%E2%80%93subscribe_pattern">publish-subscribe</a>. In a queue, a pool of consumers may read from a server and each message goes to one of them; in publish-subscribe the message is broadcast to all consumers. Kafka offers a single consumer abstraction that generalizes both of these&mdash;the <i>consumer group</i>.
 <p>
@@ -70,7 +70,7 @@ Consumers label themselves with a consumer group name, and each message publishe
 <p>
 If all the consumer instances have the same consumer group, then this works just like a traditional queue balancing load over the consumers.
 <p>
-If all the consumer instances have different consumer groups, then this works like publish-subscribe and all messages are broadcast to all consumers. 
+If all the consumer instances have different consumer groups, then this works like publish-subscribe and all messages are broadcast to all consumers.
 <p>
 More commonly, however, we have found that topics have a small number of consumer groups, one for each "logical subscriber". Each group is composed of many consumer instances for scalability and fault tolerance. This is nothing more than publish-subscribe semantics where the subscriber is cluster of consumers instead of a single process.
 <p>
@@ -88,7 +88,7 @@ Kafka does it better. By having a notion of parallelism&mdash;the partition&mdas
 <p>
 Kafka only provides a total order over messages <i>within</i> a partition, not between different partitions in a topic. Per-partition ordering combined with the ability to partition data by key is sufficient for most applications. However, if you require a total order over messages this can be achieved with a topic that has only one partition, though this will mean only one consumer process per consumer group.
 
-<h4>Guarantees</h4>
+<h4><a id="intro_guarantees" href="#intro_guarantees">Guarantees</a></h4>
 
 At a high-level Kafka gives the following guarantees:
 <ul>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/allclasses-frame.html
----------------------------------------------------------------------
diff --git a/090/javadoc/allclasses-frame.html b/090/javadoc/allclasses-frame.html
index b5d3709..b8ef929 100644
--- a/090/javadoc/allclasses-frame.html
+++ b/090/javadoc/allclasses-frame.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:06 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:11 PST 2015 -->
 <title>All Classes (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/allclasses-noframe.html
----------------------------------------------------------------------
diff --git a/090/javadoc/allclasses-noframe.html b/090/javadoc/allclasses-noframe.html
index 3773f1e..d32d5ec 100644
--- a/090/javadoc/allclasses-noframe.html
+++ b/090/javadoc/allclasses-noframe.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:06 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:11 PST 2015 -->
 <title>All Classes (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/constant-values.html
----------------------------------------------------------------------
diff --git a/090/javadoc/constant-values.html b/090/javadoc/constant-values.html
index 81b3a24..0d4f67f 100644
--- a/090/javadoc/constant-values.html
+++ b/090/javadoc/constant-values.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:06 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:11 PST 2015 -->
 <title>Constant Field Values (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/deprecated-list.html
----------------------------------------------------------------------
diff --git a/090/javadoc/deprecated-list.html b/090/javadoc/deprecated-list.html
index fb02875..ecbc175 100644
--- a/090/javadoc/deprecated-list.html
+++ b/090/javadoc/deprecated-list.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:06 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:11 PST 2015 -->
 <title>Deprecated List (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/help-doc.html
----------------------------------------------------------------------
diff --git a/090/javadoc/help-doc.html b/090/javadoc/help-doc.html
index 26b4d53..10f17da 100644
--- a/090/javadoc/help-doc.html
+++ b/090/javadoc/help-doc.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:06 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:11 PST 2015 -->
 <title>API Help (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/index-all.html
----------------------------------------------------------------------
diff --git a/090/javadoc/index-all.html b/090/javadoc/index-all.html
index 77d62e3..70c568c 100644
--- a/090/javadoc/index-all.html
+++ b/090/javadoc/index-all.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:06 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:11 PST 2015 -->
 <title>Index (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="./stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/index.html
----------------------------------------------------------------------
diff --git a/090/javadoc/index.html b/090/javadoc/index.html
index fe328eb..c9aeb10 100644
--- a/090/javadoc/index.html
+++ b/090/javadoc/index.html
@@ -2,7 +2,7 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc on Fri Nov 13 08:33:06 PST 2015 -->
+<!-- Generated by javadoc on Tue Nov 17 18:38:11 PST 2015 -->
 <title>clients 0.9.0.0 API</title>
 <script type="text/javascript">
     targetPage = "" + window.location.search;

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/clients/consumer/CommitFailedException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/clients/consumer/CommitFailedException.html b/090/javadoc/org/apache/kafka/clients/consumer/CommitFailedException.html
index a7015f7..a7ed4db 100644
--- a/090/javadoc/org/apache/kafka/clients/consumer/CommitFailedException.html
+++ b/090/javadoc/org/apache/kafka/clients/consumer/CommitFailedException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:04 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:09 PST 2015 -->
 <title>CommitFailedException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/clients/consumer/Consumer.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/clients/consumer/Consumer.html b/090/javadoc/org/apache/kafka/clients/consumer/Consumer.html
index f7ed059..1c3de20 100644
--- a/090/javadoc/org/apache/kafka/clients/consumer/Consumer.html
+++ b/090/javadoc/org/apache/kafka/clients/consumer/Consumer.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:04 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:09 PST 2015 -->
 <title>Consumer (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/clients/consumer/ConsumerConfig.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/clients/consumer/ConsumerConfig.html b/090/javadoc/org/apache/kafka/clients/consumer/ConsumerConfig.html
index 3e265ac..34960e0 100644
--- a/090/javadoc/org/apache/kafka/clients/consumer/ConsumerConfig.html
+++ b/090/javadoc/org/apache/kafka/clients/consumer/ConsumerConfig.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:04 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:09 PST 2015 -->
 <title>ConsumerConfig (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/clients/consumer/ConsumerRebalanceListener.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/clients/consumer/ConsumerRebalanceListener.html b/090/javadoc/org/apache/kafka/clients/consumer/ConsumerRebalanceListener.html
index 06f3120..6e771db 100644
--- a/090/javadoc/org/apache/kafka/clients/consumer/ConsumerRebalanceListener.html
+++ b/090/javadoc/org/apache/kafka/clients/consumer/ConsumerRebalanceListener.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:09 PST 2015 -->
 <title>ConsumerRebalanceListener (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/clients/consumer/ConsumerRecord.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/clients/consumer/ConsumerRecord.html b/090/javadoc/org/apache/kafka/clients/consumer/ConsumerRecord.html
index 1f78cd0..69257f3 100644
--- a/090/javadoc/org/apache/kafka/clients/consumer/ConsumerRecord.html
+++ b/090/javadoc/org/apache/kafka/clients/consumer/ConsumerRecord.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:09 PST 2015 -->
 <title>ConsumerRecord (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/clients/consumer/ConsumerRecords.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/clients/consumer/ConsumerRecords.html b/090/javadoc/org/apache/kafka/clients/consumer/ConsumerRecords.html
index 91d5bdd..d3d7b43 100644
--- a/090/javadoc/org/apache/kafka/clients/consumer/ConsumerRecords.html
+++ b/090/javadoc/org/apache/kafka/clients/consumer/ConsumerRecords.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:09 PST 2015 -->
 <title>ConsumerRecords (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/clients/consumer/InvalidOffsetException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/clients/consumer/InvalidOffsetException.html b/090/javadoc/org/apache/kafka/clients/consumer/InvalidOffsetException.html
index 83712e4..5df3d7d 100644
--- a/090/javadoc/org/apache/kafka/clients/consumer/InvalidOffsetException.html
+++ b/090/javadoc/org/apache/kafka/clients/consumer/InvalidOffsetException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:09 PST 2015 -->
 <title>InvalidOffsetException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/clients/consumer/KafkaConsumer.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/clients/consumer/KafkaConsumer.html b/090/javadoc/org/apache/kafka/clients/consumer/KafkaConsumer.html
index a9f9789..3cbad8b 100644
--- a/090/javadoc/org/apache/kafka/clients/consumer/KafkaConsumer.html
+++ b/090/javadoc/org/apache/kafka/clients/consumer/KafkaConsumer.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>KafkaConsumer (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/clients/consumer/MockConsumer.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/clients/consumer/MockConsumer.html b/090/javadoc/org/apache/kafka/clients/consumer/MockConsumer.html
index fde12c9..cf5503c 100644
--- a/090/javadoc/org/apache/kafka/clients/consumer/MockConsumer.html
+++ b/090/javadoc/org/apache/kafka/clients/consumer/MockConsumer.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>MockConsumer (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/clients/consumer/NoOffsetForPartitionException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/clients/consumer/NoOffsetForPartitionException.html b/090/javadoc/org/apache/kafka/clients/consumer/NoOffsetForPartitionException.html
index 1598aa9..9f7402e 100644
--- a/090/javadoc/org/apache/kafka/clients/consumer/NoOffsetForPartitionException.html
+++ b/090/javadoc/org/apache/kafka/clients/consumer/NoOffsetForPartitionException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>NoOffsetForPartitionException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/clients/consumer/OffsetAndMetadata.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/clients/consumer/OffsetAndMetadata.html b/090/javadoc/org/apache/kafka/clients/consumer/OffsetAndMetadata.html
index 6490db1..b76a3f7 100644
--- a/090/javadoc/org/apache/kafka/clients/consumer/OffsetAndMetadata.html
+++ b/090/javadoc/org/apache/kafka/clients/consumer/OffsetAndMetadata.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>OffsetAndMetadata (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/clients/consumer/OffsetCommitCallback.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/clients/consumer/OffsetCommitCallback.html b/090/javadoc/org/apache/kafka/clients/consumer/OffsetCommitCallback.html
index 34d1bf1..be97c24 100644
--- a/090/javadoc/org/apache/kafka/clients/consumer/OffsetCommitCallback.html
+++ b/090/javadoc/org/apache/kafka/clients/consumer/OffsetCommitCallback.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>OffsetCommitCallback (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/clients/consumer/OffsetOutOfRangeException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/clients/consumer/OffsetOutOfRangeException.html b/090/javadoc/org/apache/kafka/clients/consumer/OffsetOutOfRangeException.html
index 87a3144..bdcf3fb 100644
--- a/090/javadoc/org/apache/kafka/clients/consumer/OffsetOutOfRangeException.html
+++ b/090/javadoc/org/apache/kafka/clients/consumer/OffsetOutOfRangeException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>OffsetOutOfRangeException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/clients/consumer/OffsetResetStrategy.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/clients/consumer/OffsetResetStrategy.html b/090/javadoc/org/apache/kafka/clients/consumer/OffsetResetStrategy.html
index f053337..7307987 100644
--- a/090/javadoc/org/apache/kafka/clients/consumer/OffsetResetStrategy.html
+++ b/090/javadoc/org/apache/kafka/clients/consumer/OffsetResetStrategy.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>OffsetResetStrategy (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/clients/consumer/RangeAssignor.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/clients/consumer/RangeAssignor.html b/090/javadoc/org/apache/kafka/clients/consumer/RangeAssignor.html
index 8b9a21b..8488948 100644
--- a/090/javadoc/org/apache/kafka/clients/consumer/RangeAssignor.html
+++ b/090/javadoc/org/apache/kafka/clients/consumer/RangeAssignor.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>RangeAssignor (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/clients/consumer/RoundRobinAssignor.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/clients/consumer/RoundRobinAssignor.html b/090/javadoc/org/apache/kafka/clients/consumer/RoundRobinAssignor.html
index c775c1a..7b0eb93 100644
--- a/090/javadoc/org/apache/kafka/clients/consumer/RoundRobinAssignor.html
+++ b/090/javadoc/org/apache/kafka/clients/consumer/RoundRobinAssignor.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>RoundRobinAssignor (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/clients/consumer/package-frame.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/clients/consumer/package-frame.html b/090/javadoc/org/apache/kafka/clients/consumer/package-frame.html
index 5b1851c..d2f9884 100644
--- a/090/javadoc/org/apache/kafka/clients/consumer/package-frame.html
+++ b/090/javadoc/org/apache/kafka/clients/consumer/package-frame.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:06 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:11 PST 2015 -->
 <title>org.apache.kafka.clients.consumer (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/clients/consumer/package-summary.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/clients/consumer/package-summary.html b/090/javadoc/org/apache/kafka/clients/consumer/package-summary.html
index 1d79891..6c6f14c 100644
--- a/090/javadoc/org/apache/kafka/clients/consumer/package-summary.html
+++ b/090/javadoc/org/apache/kafka/clients/consumer/package-summary.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:06 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:11 PST 2015 -->
 <title>org.apache.kafka.clients.consumer (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/clients/consumer/package-tree.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/clients/consumer/package-tree.html b/090/javadoc/org/apache/kafka/clients/consumer/package-tree.html
index a55d3d7..7210ce0 100644
--- a/090/javadoc/org/apache/kafka/clients/consumer/package-tree.html
+++ b/090/javadoc/org/apache/kafka/clients/consumer/package-tree.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:06 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:11 PST 2015 -->
 <title>org.apache.kafka.clients.consumer Class Hierarchy (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/clients/producer/BufferExhaustedException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/clients/producer/BufferExhaustedException.html b/090/javadoc/org/apache/kafka/clients/producer/BufferExhaustedException.html
index f301ee5..06f1c90 100644
--- a/090/javadoc/org/apache/kafka/clients/producer/BufferExhaustedException.html
+++ b/090/javadoc/org/apache/kafka/clients/producer/BufferExhaustedException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>BufferExhaustedException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/clients/producer/Callback.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/clients/producer/Callback.html b/090/javadoc/org/apache/kafka/clients/producer/Callback.html
index 9d8bddc..f0f4327 100644
--- a/090/javadoc/org/apache/kafka/clients/producer/Callback.html
+++ b/090/javadoc/org/apache/kafka/clients/producer/Callback.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>Callback (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/clients/producer/KafkaProducer.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/clients/producer/KafkaProducer.html b/090/javadoc/org/apache/kafka/clients/producer/KafkaProducer.html
index 6544c17..25b0689 100644
--- a/090/javadoc/org/apache/kafka/clients/producer/KafkaProducer.html
+++ b/090/javadoc/org/apache/kafka/clients/producer/KafkaProducer.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>KafkaProducer (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/clients/producer/MockProducer.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/clients/producer/MockProducer.html b/090/javadoc/org/apache/kafka/clients/producer/MockProducer.html
index e0625ea..1ea145f 100644
--- a/090/javadoc/org/apache/kafka/clients/producer/MockProducer.html
+++ b/090/javadoc/org/apache/kafka/clients/producer/MockProducer.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:06 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>MockProducer (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/clients/producer/Partitioner.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/clients/producer/Partitioner.html b/090/javadoc/org/apache/kafka/clients/producer/Partitioner.html
index a857049..a40f1fb 100644
--- a/090/javadoc/org/apache/kafka/clients/producer/Partitioner.html
+++ b/090/javadoc/org/apache/kafka/clients/producer/Partitioner.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:06 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>Partitioner (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/clients/producer/Producer.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/clients/producer/Producer.html b/090/javadoc/org/apache/kafka/clients/producer/Producer.html
index 006a81c..3d0e610 100644
--- a/090/javadoc/org/apache/kafka/clients/producer/Producer.html
+++ b/090/javadoc/org/apache/kafka/clients/producer/Producer.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:06 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>Producer (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/clients/producer/ProducerConfig.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/clients/producer/ProducerConfig.html b/090/javadoc/org/apache/kafka/clients/producer/ProducerConfig.html
index d66b0a1..274d704 100644
--- a/090/javadoc/org/apache/kafka/clients/producer/ProducerConfig.html
+++ b/090/javadoc/org/apache/kafka/clients/producer/ProducerConfig.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:06 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>ProducerConfig (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/clients/producer/ProducerRecord.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/clients/producer/ProducerRecord.html b/090/javadoc/org/apache/kafka/clients/producer/ProducerRecord.html
index 7ffef67..a7519bd 100644
--- a/090/javadoc/org/apache/kafka/clients/producer/ProducerRecord.html
+++ b/090/javadoc/org/apache/kafka/clients/producer/ProducerRecord.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:06 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:11 PST 2015 -->
 <title>ProducerRecord (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/clients/producer/RecordMetadata.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/clients/producer/RecordMetadata.html b/090/javadoc/org/apache/kafka/clients/producer/RecordMetadata.html
index 4e288d7..d0bb99e 100644
--- a/090/javadoc/org/apache/kafka/clients/producer/RecordMetadata.html
+++ b/090/javadoc/org/apache/kafka/clients/producer/RecordMetadata.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:06 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:11 PST 2015 -->
 <title>RecordMetadata (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/clients/producer/package-frame.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/clients/producer/package-frame.html b/090/javadoc/org/apache/kafka/clients/producer/package-frame.html
index 746ca0f..f4df1ad 100644
--- a/090/javadoc/org/apache/kafka/clients/producer/package-frame.html
+++ b/090/javadoc/org/apache/kafka/clients/producer/package-frame.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:06 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:11 PST 2015 -->
 <title>org.apache.kafka.clients.producer (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/clients/producer/package-summary.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/clients/producer/package-summary.html b/090/javadoc/org/apache/kafka/clients/producer/package-summary.html
index bce6281..d99b877 100644
--- a/090/javadoc/org/apache/kafka/clients/producer/package-summary.html
+++ b/090/javadoc/org/apache/kafka/clients/producer/package-summary.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:06 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:11 PST 2015 -->
 <title>org.apache.kafka.clients.producer (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/clients/producer/package-tree.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/clients/producer/package-tree.html b/090/javadoc/org/apache/kafka/clients/producer/package-tree.html
index b37afbd..95121fc 100644
--- a/090/javadoc/org/apache/kafka/clients/producer/package-tree.html
+++ b/090/javadoc/org/apache/kafka/clients/producer/package-tree.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:06 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:11 PST 2015 -->
 <title>org.apache.kafka.clients.producer Class Hierarchy (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/Cluster.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/Cluster.html b/090/javadoc/org/apache/kafka/common/Cluster.html
index f7d5997..ad24c66 100644
--- a/090/javadoc/org/apache/kafka/common/Cluster.html
+++ b/090/javadoc/org/apache/kafka/common/Cluster.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>Cluster (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/Configurable.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/Configurable.html b/090/javadoc/org/apache/kafka/common/Configurable.html
index 51044e5..caecfc8 100644
--- a/090/javadoc/org/apache/kafka/common/Configurable.html
+++ b/090/javadoc/org/apache/kafka/common/Configurable.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>Configurable (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/KafkaException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/KafkaException.html b/090/javadoc/org/apache/kafka/common/KafkaException.html
index ed1a49a..042e8fa 100644
--- a/090/javadoc/org/apache/kafka/common/KafkaException.html
+++ b/090/javadoc/org/apache/kafka/common/KafkaException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>KafkaException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/Metric.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/Metric.html b/090/javadoc/org/apache/kafka/common/Metric.html
index d799555..23381dc 100644
--- a/090/javadoc/org/apache/kafka/common/Metric.html
+++ b/090/javadoc/org/apache/kafka/common/Metric.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>Metric (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/MetricName.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/MetricName.html b/090/javadoc/org/apache/kafka/common/MetricName.html
index 8f0ed79..e8e2b1f 100644
--- a/090/javadoc/org/apache/kafka/common/MetricName.html
+++ b/090/javadoc/org/apache/kafka/common/MetricName.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>MetricName (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/Node.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/Node.html b/090/javadoc/org/apache/kafka/common/Node.html
index 9a16521..def15f9 100644
--- a/090/javadoc/org/apache/kafka/common/Node.html
+++ b/090/javadoc/org/apache/kafka/common/Node.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>Node (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/PartitionInfo.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/PartitionInfo.html b/090/javadoc/org/apache/kafka/common/PartitionInfo.html
index 8bf5f95..5af6dd0 100644
--- a/090/javadoc/org/apache/kafka/common/PartitionInfo.html
+++ b/090/javadoc/org/apache/kafka/common/PartitionInfo.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>PartitionInfo (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/TopicPartition.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/TopicPartition.html b/090/javadoc/org/apache/kafka/common/TopicPartition.html
index f336a37..9165439 100644
--- a/090/javadoc/org/apache/kafka/common/TopicPartition.html
+++ b/090/javadoc/org/apache/kafka/common/TopicPartition.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>TopicPartition (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/ApiException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/ApiException.html b/090/javadoc/org/apache/kafka/common/errors/ApiException.html
index c0ce8ec..d4ace34 100644
--- a/090/javadoc/org/apache/kafka/common/errors/ApiException.html
+++ b/090/javadoc/org/apache/kafka/common/errors/ApiException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>ApiException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/AuthorizationException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/AuthorizationException.html b/090/javadoc/org/apache/kafka/common/errors/AuthorizationException.html
index e8fba02..6a89cf0 100644
--- a/090/javadoc/org/apache/kafka/common/errors/AuthorizationException.html
+++ b/090/javadoc/org/apache/kafka/common/errors/AuthorizationException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>AuthorizationException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/BrokerNotAvailableException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/BrokerNotAvailableException.html b/090/javadoc/org/apache/kafka/common/errors/BrokerNotAvailableException.html
index f348fcf..220d260 100644
--- a/090/javadoc/org/apache/kafka/common/errors/BrokerNotAvailableException.html
+++ b/090/javadoc/org/apache/kafka/common/errors/BrokerNotAvailableException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>BrokerNotAvailableException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/ControllerMovedException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/ControllerMovedException.html b/090/javadoc/org/apache/kafka/common/errors/ControllerMovedException.html
index 7b0f5b8..e07526e 100644
--- a/090/javadoc/org/apache/kafka/common/errors/ControllerMovedException.html
+++ b/090/javadoc/org/apache/kafka/common/errors/ControllerMovedException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>ControllerMovedException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/CorruptRecordException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/CorruptRecordException.html b/090/javadoc/org/apache/kafka/common/errors/CorruptRecordException.html
index 0d2f342..dd13ad7 100644
--- a/090/javadoc/org/apache/kafka/common/errors/CorruptRecordException.html
+++ b/090/javadoc/org/apache/kafka/common/errors/CorruptRecordException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>CorruptRecordException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/DisconnectException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/DisconnectException.html b/090/javadoc/org/apache/kafka/common/errors/DisconnectException.html
index b418fb3..32d11a6 100644
--- a/090/javadoc/org/apache/kafka/common/errors/DisconnectException.html
+++ b/090/javadoc/org/apache/kafka/common/errors/DisconnectException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>DisconnectException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/GroupAuthorizationException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/GroupAuthorizationException.html b/090/javadoc/org/apache/kafka/common/errors/GroupAuthorizationException.html
index 062be01..6c5b312 100644
--- a/090/javadoc/org/apache/kafka/common/errors/GroupAuthorizationException.html
+++ b/090/javadoc/org/apache/kafka/common/errors/GroupAuthorizationException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>GroupAuthorizationException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/GroupCoordinatorNotAvailableException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/GroupCoordinatorNotAvailableException.html b/090/javadoc/org/apache/kafka/common/errors/GroupCoordinatorNotAvailableException.html
index a5b3545..ddfc782 100644
--- a/090/javadoc/org/apache/kafka/common/errors/GroupCoordinatorNotAvailableException.html
+++ b/090/javadoc/org/apache/kafka/common/errors/GroupCoordinatorNotAvailableException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>GroupCoordinatorNotAvailableException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/GroupLoadInProgressException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/GroupLoadInProgressException.html b/090/javadoc/org/apache/kafka/common/errors/GroupLoadInProgressException.html
index cb225e4..4108df1 100644
--- a/090/javadoc/org/apache/kafka/common/errors/GroupLoadInProgressException.html
+++ b/090/javadoc/org/apache/kafka/common/errors/GroupLoadInProgressException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>GroupLoadInProgressException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/IllegalGenerationException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/IllegalGenerationException.html b/090/javadoc/org/apache/kafka/common/errors/IllegalGenerationException.html
index b7b3221..750a4eb 100644
--- a/090/javadoc/org/apache/kafka/common/errors/IllegalGenerationException.html
+++ b/090/javadoc/org/apache/kafka/common/errors/IllegalGenerationException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>IllegalGenerationException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/InterruptException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/InterruptException.html b/090/javadoc/org/apache/kafka/common/errors/InterruptException.html
index 237a20e..52e014c 100644
--- a/090/javadoc/org/apache/kafka/common/errors/InterruptException.html
+++ b/090/javadoc/org/apache/kafka/common/errors/InterruptException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>InterruptException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/InvalidMetadataException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/InvalidMetadataException.html b/090/javadoc/org/apache/kafka/common/errors/InvalidMetadataException.html
index be529a8..e1e645f 100644
--- a/090/javadoc/org/apache/kafka/common/errors/InvalidMetadataException.html
+++ b/090/javadoc/org/apache/kafka/common/errors/InvalidMetadataException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>InvalidMetadataException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/InvalidRequiredAcksException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/InvalidRequiredAcksException.html b/090/javadoc/org/apache/kafka/common/errors/InvalidRequiredAcksException.html
index 6ed3e2e..e1f312c 100644
--- a/090/javadoc/org/apache/kafka/common/errors/InvalidRequiredAcksException.html
+++ b/090/javadoc/org/apache/kafka/common/errors/InvalidRequiredAcksException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>InvalidRequiredAcksException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/InvalidTopicException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/InvalidTopicException.html b/090/javadoc/org/apache/kafka/common/errors/InvalidTopicException.html
index ac8319d..6588310 100644
--- a/090/javadoc/org/apache/kafka/common/errors/InvalidTopicException.html
+++ b/090/javadoc/org/apache/kafka/common/errors/InvalidTopicException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>InvalidTopicException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/LeaderNotAvailableException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/LeaderNotAvailableException.html b/090/javadoc/org/apache/kafka/common/errors/LeaderNotAvailableException.html
index 93916f0..97b1ac7 100644
--- a/090/javadoc/org/apache/kafka/common/errors/LeaderNotAvailableException.html
+++ b/090/javadoc/org/apache/kafka/common/errors/LeaderNotAvailableException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>LeaderNotAvailableException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/NetworkException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/NetworkException.html b/090/javadoc/org/apache/kafka/common/errors/NetworkException.html
index 238aa88..3185cac 100644
--- a/090/javadoc/org/apache/kafka/common/errors/NetworkException.html
+++ b/090/javadoc/org/apache/kafka/common/errors/NetworkException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>NetworkException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/NotCoordinatorForGroupException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/NotCoordinatorForGroupException.html b/090/javadoc/org/apache/kafka/common/errors/NotCoordinatorForGroupException.html
index b14929e..5940ccd 100644
--- a/090/javadoc/org/apache/kafka/common/errors/NotCoordinatorForGroupException.html
+++ b/090/javadoc/org/apache/kafka/common/errors/NotCoordinatorForGroupException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>NotCoordinatorForGroupException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/NotEnoughReplicasAfterAppendException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/NotEnoughReplicasAfterAppendException.html b/090/javadoc/org/apache/kafka/common/errors/NotEnoughReplicasAfterAppendException.html
index c87e902..d407621 100644
--- a/090/javadoc/org/apache/kafka/common/errors/NotEnoughReplicasAfterAppendException.html
+++ b/090/javadoc/org/apache/kafka/common/errors/NotEnoughReplicasAfterAppendException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>NotEnoughReplicasAfterAppendException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/NotEnoughReplicasException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/NotEnoughReplicasException.html b/090/javadoc/org/apache/kafka/common/errors/NotEnoughReplicasException.html
index 2ceb767..9e9e121 100644
--- a/090/javadoc/org/apache/kafka/common/errors/NotEnoughReplicasException.html
+++ b/090/javadoc/org/apache/kafka/common/errors/NotEnoughReplicasException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>NotEnoughReplicasException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/NotLeaderForPartitionException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/NotLeaderForPartitionException.html b/090/javadoc/org/apache/kafka/common/errors/NotLeaderForPartitionException.html
index 6a1e563..70576e8 100644
--- a/090/javadoc/org/apache/kafka/common/errors/NotLeaderForPartitionException.html
+++ b/090/javadoc/org/apache/kafka/common/errors/NotLeaderForPartitionException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>NotLeaderForPartitionException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/OffsetMetadataTooLarge.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/OffsetMetadataTooLarge.html b/090/javadoc/org/apache/kafka/common/errors/OffsetMetadataTooLarge.html
index ec48dbe..bf2432d 100644
--- a/090/javadoc/org/apache/kafka/common/errors/OffsetMetadataTooLarge.html
+++ b/090/javadoc/org/apache/kafka/common/errors/OffsetMetadataTooLarge.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>OffsetMetadataTooLarge (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/RebalanceInProgressException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/RebalanceInProgressException.html b/090/javadoc/org/apache/kafka/common/errors/RebalanceInProgressException.html
index 37d2a00..2f052ba 100644
--- a/090/javadoc/org/apache/kafka/common/errors/RebalanceInProgressException.html
+++ b/090/javadoc/org/apache/kafka/common/errors/RebalanceInProgressException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>RebalanceInProgressException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/RecordBatchTooLargeException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/RecordBatchTooLargeException.html b/090/javadoc/org/apache/kafka/common/errors/RecordBatchTooLargeException.html
index 51f3dc0..34e603c 100644
--- a/090/javadoc/org/apache/kafka/common/errors/RecordBatchTooLargeException.html
+++ b/090/javadoc/org/apache/kafka/common/errors/RecordBatchTooLargeException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>RecordBatchTooLargeException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/RecordTooLargeException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/RecordTooLargeException.html b/090/javadoc/org/apache/kafka/common/errors/RecordTooLargeException.html
index a535c79..cfabaf5 100644
--- a/090/javadoc/org/apache/kafka/common/errors/RecordTooLargeException.html
+++ b/090/javadoc/org/apache/kafka/common/errors/RecordTooLargeException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>RecordTooLargeException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/RetriableException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/RetriableException.html b/090/javadoc/org/apache/kafka/common/errors/RetriableException.html
index afba605..f3530d1 100644
--- a/090/javadoc/org/apache/kafka/common/errors/RetriableException.html
+++ b/090/javadoc/org/apache/kafka/common/errors/RetriableException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>RetriableException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/SerializationException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/SerializationException.html b/090/javadoc/org/apache/kafka/common/errors/SerializationException.html
index 5106f11..6b96054 100644
--- a/090/javadoc/org/apache/kafka/common/errors/SerializationException.html
+++ b/090/javadoc/org/apache/kafka/common/errors/SerializationException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>SerializationException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/TimeoutException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/TimeoutException.html b/090/javadoc/org/apache/kafka/common/errors/TimeoutException.html
index d8c834c..aea7964 100644
--- a/090/javadoc/org/apache/kafka/common/errors/TimeoutException.html
+++ b/090/javadoc/org/apache/kafka/common/errors/TimeoutException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>TimeoutException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/TopicAuthorizationException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/TopicAuthorizationException.html b/090/javadoc/org/apache/kafka/common/errors/TopicAuthorizationException.html
index 8c1334d..e71c3fb 100644
--- a/090/javadoc/org/apache/kafka/common/errors/TopicAuthorizationException.html
+++ b/090/javadoc/org/apache/kafka/common/errors/TopicAuthorizationException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>TopicAuthorizationException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/UnknownMemberIdException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/UnknownMemberIdException.html b/090/javadoc/org/apache/kafka/common/errors/UnknownMemberIdException.html
index d767413..37257dd 100644
--- a/090/javadoc/org/apache/kafka/common/errors/UnknownMemberIdException.html
+++ b/090/javadoc/org/apache/kafka/common/errors/UnknownMemberIdException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>UnknownMemberIdException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/UnknownServerException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/UnknownServerException.html b/090/javadoc/org/apache/kafka/common/errors/UnknownServerException.html
index 9dca82a..9362236 100644
--- a/090/javadoc/org/apache/kafka/common/errors/UnknownServerException.html
+++ b/090/javadoc/org/apache/kafka/common/errors/UnknownServerException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>UnknownServerException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/UnknownTopicOrPartitionException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/UnknownTopicOrPartitionException.html b/090/javadoc/org/apache/kafka/common/errors/UnknownTopicOrPartitionException.html
index dfdc58e..0ee38ae 100644
--- a/090/javadoc/org/apache/kafka/common/errors/UnknownTopicOrPartitionException.html
+++ b/090/javadoc/org/apache/kafka/common/errors/UnknownTopicOrPartitionException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>UnknownTopicOrPartitionException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/WakeupException.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/WakeupException.html b/090/javadoc/org/apache/kafka/common/errors/WakeupException.html
index 004a362..1f29f49 100644
--- a/090/javadoc/org/apache/kafka/common/errors/WakeupException.html
+++ b/090/javadoc/org/apache/kafka/common/errors/WakeupException.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:05 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:10 PST 2015 -->
 <title>WakeupException (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/package-frame.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/package-frame.html b/090/javadoc/org/apache/kafka/common/errors/package-frame.html
index 8a2747c..56c906d 100644
--- a/090/javadoc/org/apache/kafka/common/errors/package-frame.html
+++ b/090/javadoc/org/apache/kafka/common/errors/package-frame.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:06 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:11 PST 2015 -->
 <title>org.apache.kafka.common.errors (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/package-summary.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/package-summary.html b/090/javadoc/org/apache/kafka/common/errors/package-summary.html
index 63c5993..333015b 100644
--- a/090/javadoc/org/apache/kafka/common/errors/package-summary.html
+++ b/090/javadoc/org/apache/kafka/common/errors/package-summary.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:06 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:11 PST 2015 -->
 <title>org.apache.kafka.common.errors (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/errors/package-tree.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/errors/package-tree.html b/090/javadoc/org/apache/kafka/common/errors/package-tree.html
index 5ae3791..48a4772 100644
--- a/090/javadoc/org/apache/kafka/common/errors/package-tree.html
+++ b/090/javadoc/org/apache/kafka/common/errors/package-tree.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:06 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:11 PST 2015 -->
 <title>org.apache.kafka.common.errors Class Hierarchy (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/package-frame.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/package-frame.html b/090/javadoc/org/apache/kafka/common/package-frame.html
index 87bd6a3..ae20127 100644
--- a/090/javadoc/org/apache/kafka/common/package-frame.html
+++ b/090/javadoc/org/apache/kafka/common/package-frame.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:06 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:11 PST 2015 -->
 <title>org.apache.kafka.common (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/package-summary.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/package-summary.html b/090/javadoc/org/apache/kafka/common/package-summary.html
index 0936067..e4d6d9f 100644
--- a/090/javadoc/org/apache/kafka/common/package-summary.html
+++ b/090/javadoc/org/apache/kafka/common/package-summary.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:06 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:11 PST 2015 -->
 <title>org.apache.kafka.common (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>

http://git-wip-us.apache.org/repos/asf/kafka-site/blob/24d8d665/090/javadoc/org/apache/kafka/common/package-tree.html
----------------------------------------------------------------------
diff --git a/090/javadoc/org/apache/kafka/common/package-tree.html b/090/javadoc/org/apache/kafka/common/package-tree.html
index 13bc9d9..45a5155 100644
--- a/090/javadoc/org/apache/kafka/common/package-tree.html
+++ b/090/javadoc/org/apache/kafka/common/package-tree.html
@@ -2,9 +2,9 @@
 <!-- NewPage -->
 <html lang="en">
 <head>
-<!-- Generated by javadoc (version 1.7.0_80) on Fri Nov 13 08:33:06 PST 2015 -->
+<!-- Generated by javadoc (version 1.7.0_80) on Tue Nov 17 18:38:11 PST 2015 -->
 <title>org.apache.kafka.common Class Hierarchy (clients 0.9.0.0 API)</title>
-<meta name="date" content="2015-11-13">
+<meta name="date" content="2015-11-17">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
 </head>
 <body>