KAFKA-3441: 0.10.0 documentation still says "0.9.0"

Author: Grant Henke <granthenke@gmail.com>

Reviewers: Gwen Shapira

Closes #1122 from granthenke/docs-10
This commit is contained in:
Grant Henke 2016-03-23 12:54:26 -07:00 committed by Gwen Shapira
parent 20c313526a
commit d578476410
2 changed files with 7 additions and 7 deletions

View File

@ -24,12 +24,12 @@ We encourage all new development to use the new Java producer. This client is pr
&lt;dependency&gt; &lt;dependency&gt;
&lt;groupId&gt;org.apache.kafka&lt;/groupId&gt; &lt;groupId&gt;org.apache.kafka&lt;/groupId&gt;
&lt;artifactId&gt;kafka-clients&lt;/artifactId&gt; &lt;artifactId&gt;kafka-clients&lt;/artifactId&gt;
&lt;version&gt;0.9.0.0&lt;/version&gt; &lt;version&gt;0.10.0.0&lt;/version&gt;
&lt;/dependency&gt; &lt;/dependency&gt;
</pre> </pre>
Examples showing how to use the producer are given in the Examples showing how to use the producer are given in the
<a href="http://kafka.apache.org/090/javadoc/index.html?org/apache/kafka/clients/producer/KafkaProducer.html" title="Kafka 0.9.0 Javadoc">javadocs</a>. <a href="http://kafka.apache.org/0100/javadoc/index.html?org/apache/kafka/clients/producer/KafkaProducer.html" title="Kafka 0.10.0 Javadoc">javadocs</a>.
<p> <p>
For those interested in the legacy Scala producer api, information can be found <a href="http://kafka.apache.org/081/documentation.html#producerapi"> For those interested in the legacy Scala producer api, information can be found <a href="http://kafka.apache.org/081/documentation.html#producerapi">
@ -159,9 +159,9 @@ This new unified consumer API removes the distinction between the 0.8 high-level
&lt;dependency&gt; &lt;dependency&gt;
&lt;groupId&gt;org.apache.kafka&lt;/groupId&gt; &lt;groupId&gt;org.apache.kafka&lt;/groupId&gt;
&lt;artifactId&gt;kafka-clients&lt;/artifactId&gt; &lt;artifactId&gt;kafka-clients&lt;/artifactId&gt;
&lt;version&gt;0.9.0.0&lt;/version&gt; &lt;version&gt;0.10.0.0&lt;/version&gt;
&lt;/dependency&gt; &lt;/dependency&gt;
</pre> </pre>
Examples showing how to use the consumer are given in the Examples showing how to use the consumer are given in the
<a href="http://kafka.apache.org/090/javadoc/index.html?org/apache/kafka/clients/consumer/KafkaConsumer.html" title="Kafka 0.9.0 Javadoc">javadocs</a>. <a href="http://kafka.apache.org/0100/javadoc/index.html?org/apache/kafka/clients/consumer/KafkaConsumer.html" title="Kafka 0.9.0 Javadoc">javadocs</a>.

View File

@ -21,11 +21,11 @@ This tutorial assumes you are starting fresh and have no existing Kafka or ZooKe
<h4><a id="quickstart_download" href="#quickstart_download">Step 1: Download the code</a></h4> <h4><a id="quickstart_download" href="#quickstart_download">Step 1: Download the code</a></h4>
<a href="https://www.apache.org/dyn/closer.cgi?path=/kafka/0.9.0.0/kafka_2.11-0.9.0.0.tgz" title="Kafka downloads">Download</a> the 0.9.0.0 release and un-tar it. <a href="https://www.apache.org/dyn/closer.cgi?path=/kafka/0.10.0.0/kafka_2.11-0.10.0.0.tgz" title="Kafka downloads">Download</a> the 0.10.0.0 release and un-tar it.
<pre> <pre>
&gt; <b>tar -xzf kafka_2.11-0.9.0.0.tgz</b> &gt; <b>tar -xzf kafka_2.11-0.10.0.0.tgz</b>
&gt; <b>cd kafka_2.11-0.9.0.0</b> &gt; <b>cd kafka_2.11-0.10.0.0</b>
</pre> </pre>
<h4><a id="quickstart_startserver" href="#quickstart_startserver">Step 2: Start the server</a></h4> <h4><a id="quickstart_startserver" href="#quickstart_startserver">Step 2: Start the server</a></h4>