You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kafka.apache.org by jg...@apache.org on 2018/04/17 20:07:19 UTC

[kafka] branch trunk updated: KAFKA-6770; Add New Protocol Versions to 1.1.0 documentation (#4847)

This is an automated email from the ASF dual-hosted git repository.

jgus pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/kafka.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 8350340  KAFKA-6770; Add New Protocol Versions to 1.1.0 documentation (#4847)
8350340 is described below

commit 83503404e4ea18a576967c71b26b91da70642ed4
Author: Mickael Maison <mi...@users.noreply.github.com>
AuthorDate: Tue Apr 17 21:07:08 2018 +0100

    KAFKA-6770; Add New Protocol Versions to 1.1.0 documentation (#4847)
    
    Update 1.1 docs to include 2 new versions to existing APIs:
    - DescribeConfigs v1
    - Fetch v7
    
    Also fix a typo in1 FetchRequest.
---
 .../src/main/java/org/apache/kafka/common/requests/FetchRequest.java | 2 +-
 docs/upgrade.html                                                    | 5 ++++-
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/clients/src/main/java/org/apache/kafka/common/requests/FetchRequest.java b/clients/src/main/java/org/apache/kafka/common/requests/FetchRequest.java
index 65cf7fe..ad84905 100644
--- a/clients/src/main/java/org/apache/kafka/common/requests/FetchRequest.java
+++ b/clients/src/main/java/org/apache/kafka/common/requests/FetchRequest.java
@@ -52,7 +52,7 @@ public class FetchRequest extends AbstractRequest {
     private static final String MIN_BYTES_KEY_NAME = "min_bytes";
     private static final String ISOLATION_LEVEL_KEY_NAME = "isolation_level";
     private static final String TOPICS_KEY_NAME = "topics";
-    private static final String FORGOTTEN_TOPICS_DATA = "forgetten_topics_data";
+    private static final String FORGOTTEN_TOPICS_DATA = "forgotten_topics_data";
 
     // request and partition level name
     private static final String MAX_BYTES_KEY_NAME = "max_bytes";
diff --git a/docs/upgrade.html b/docs/upgrade.html
index d369d1d..08cc892 100644
--- a/docs/upgrade.html
+++ b/docs/upgrade.html
@@ -157,7 +157,10 @@
 </ul>
 
 <h5><a id="upgrade_110_new_protocols" href="#upgrade_110_new_protocols">New Protocol Versions</a></h5>
-<ul></ul>
+<ul>
+    <li> <a href="https://cwiki.apache.org/confluence/display/KAFKA/KIP-226+-+Dynamic+Broker+Configuration">KIP-226</a> introduced DescribeConfigs Request/Response v1.</li>
+    <li> <a href="https://cwiki.apache.org/confluence/display/KAFKA/KIP-227%3A+Introduce+Incremental+FetchRequests+to+Increase+Partition+Scalability">KIP-227</a> introduced Fetch Request/Response v7.</li>
+</ul>
 
 <h5><a id="upgrade_110_streams" href="#upgrade_110_streams">Upgrading a 1.1.0 Kafka Streams Application</a></h5>
 <ul>

-- 
To stop receiving notification emails like this one, please contact
jgus@apache.org.