mirror of https://github.com/apache/kafka.git
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:
parent
20c313526a
commit
d578476410
|
@ -24,12 +24,12 @@ We encourage all new development to use the new Java producer. This client is pr
|
|||
<dependency>
|
||||
<groupId>org.apache.kafka</groupId>
|
||||
<artifactId>kafka-clients</artifactId>
|
||||
<version>0.9.0.0</version>
|
||||
<version>0.10.0.0</version>
|
||||
</dependency>
|
||||
</pre>
|
||||
|
||||
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>
|
||||
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
|
|||
<dependency>
|
||||
<groupId>org.apache.kafka</groupId>
|
||||
<artifactId>kafka-clients</artifactId>
|
||||
<version>0.9.0.0</version>
|
||||
<version>0.10.0.0</version>
|
||||
</dependency>
|
||||
</pre>
|
||||
|
||||
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>.
|
||||
|
|
|
@ -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>
|
||||
|
||||
<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>
|
||||
> <b>tar -xzf kafka_2.11-0.9.0.0.tgz</b>
|
||||
> <b>cd kafka_2.11-0.9.0.0</b>
|
||||
> <b>tar -xzf kafka_2.11-0.10.0.0.tgz</b>
|
||||
> <b>cd kafka_2.11-0.10.0.0</b>
|
||||
</pre>
|
||||
|
||||
<h4><a id="quickstart_startserver" href="#quickstart_startserver">Step 2: Start the server</a></h4>
|
||||
|
|
Loading…
Reference in New Issue