You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by jk...@apache.org on 2015/02/12 18:50:23 UTC

svn commit: r1659339 - /kafka/site/082/design.html

Author: jkreps
Date: Thu Feb 12 17:50:23 2015
New Revision: 1659339

URL: http://svn.apache.org/r1659339
Log:
Fix link to producer javadoc.


Modified:
    kafka/site/082/design.html

Modified: kafka/site/082/design.html
URL: http://svn.apache.org/viewvc/kafka/site/082/design.html?rev=1659339&r1=1659338&r2=1659339&view=diff
==============================================================================
--- kafka/site/082/design.html (original)
+++ kafka/site/082/design.html Thu Feb 12 17:50:23 2015
@@ -97,7 +97,7 @@ The client controls which partition it p
 <p>
 Batching is one of the big drivers of efficiency, and to enable batching the Kafka producer will attempt to accumulate data in memory and to send out larger batches in a single request. The batching can be configured to accumulate no more than a fixed number of messages and to wait no longer than some fixed latency bound (say 64k or 10 ms). This allows the accumulation of more bytes to send, and few larger I/O operations on the servers. This buffering is configurable and gives a mechanism to trade off a small amount of additional latency for better throughput.
 <p>
-Details on <a href="#newproducerconfigs">configuration</a> and <a href="http://kafka.apache.org/082/javadoc/index.html">api</a> for the producer can be found elsewhere in the documentation.
+Details on <a href="#newproducerconfigs">configuration</a> and <a href="http://kafka.apache.org/082/javadoc/index.html?org/apache/kafka/clients/producer/KafkaProducer.html">api</a> for the producer can be found elsewhere in the documentation.
 
 <h3><a id="theconsumer">4.5 The Consumer</a></h3>