From commits-return-8894-archive-asf-public=cust-asf.ponee.io@kafka.apache.org Wed Feb 7 20:49:41 2018 Return-Path: X-Original-To: archive-asf-public@eu.ponee.io Delivered-To: archive-asf-public@eu.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by mx-eu-01.ponee.io (Postfix) with ESMTP id 46BD718065B for ; Wed, 7 Feb 2018 20:49:41 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 367A1160C5B; Wed, 7 Feb 2018 19:49:41 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 5659E160C3A for ; Wed, 7 Feb 2018 20:49:40 +0100 (CET) Received: (qmail 15681 invoked by uid 500); 7 Feb 2018 19:49:39 -0000 Mailing-List: contact commits-help@kafka.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@kafka.apache.org Delivered-To: mailing list commits@kafka.apache.org Received: (qmail 15672 invoked by uid 99); 7 Feb 2018 19:49:39 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 07 Feb 2018 19:49:39 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 314E7822D8; Wed, 7 Feb 2018 19:49:38 +0000 (UTC) Date: Wed, 07 Feb 2018 19:49:38 +0000 To: "commits@kafka.apache.org" Subject: [kafka] branch 1.0 updated: MINOR: update upgrade notes for Streams API; message format 0.10 requiered (#4500) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <151803297775.12425.15259440663140514488@gitbox.apache.org> From: mjsax@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: kafka X-Git-Refname: refs/heads/1.0 X-Git-Reftype: branch X-Git-Oldrev: b3cfc6fb3dfd029c5d9914419408492edd6919a7 X-Git-Newrev: 8cf15fc636d326e064d3235c95d3d8c8cff15858 X-Git-Rev: 8cf15fc636d326e064d3235c95d3d8c8cff15858 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. mjsax pushed a commit to branch 1.0 in repository https://gitbox.apache.org/repos/asf/kafka.git The following commit(s) were added to refs/heads/1.0 by this push: new 8cf15fc MINOR: update upgrade notes for Streams API; message format 0.10 requiered (#4500) 8cf15fc is described below commit 8cf15fc636d326e064d3235c95d3d8c8cff15858 Author: Matthias J. Sax AuthorDate: Wed Feb 7 11:43:57 2018 -0800 MINOR: update upgrade notes for Streams API; message format 0.10 requiered (#4500) Author: Matthias J. Sax Reviewers: Bill Bejeck , Guozhang Wang --- docs/streams/developer-guide/datatypes.html | 2 +- docs/streams/developer-guide/write-streams.html | 10 +++++----- docs/upgrade.html | 3 ++- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/docs/streams/developer-guide/datatypes.html b/docs/streams/developer-guide/datatypes.html index 155ee2c..a86ea3e 100644 --- a/docs/streams/developer-guide/datatypes.html +++ b/docs/streams/developer-guide/datatypes.html @@ -102,7 +102,7 @@
<dependency>
     <groupId>org.apache.kafka</groupId>
     <artifactId>kafka-clients</artifactId>
-    <version>1.0.0-cp1</version>
+    <version>{{fullDotVersion}}</version>
 </dependency>
 
diff --git a/docs/streams/developer-guide/write-streams.html b/docs/streams/developer-guide/write-streams.html index c9ca49c..1e4213d 100644 --- a/docs/streams/developer-guide/write-streams.html +++ b/docs/streams/developer-guide/write-streams.html @@ -69,12 +69,12 @@ org.apache.kafka kafka-streams - 1.0.0 + {{fullDotVersion}} (Required) Base library for Kafka Streams. org.apache.kafka kafka-clients - 1.0.0 + {{fullDotVersion}} (Required) Kafka client library. Contains built-in serializers/deserializers. @@ -87,12 +87,12 @@
<dependency>
     <groupId>org.apache.kafka</groupId>
     <artifactId>kafka-streams</artifactId>
-    <version>1.0.0</version>
+    <version>{{fullDotVersion}}</version>
 </dependency>
 <dependency>
     <groupId>org.apache.kafka</groupId>
     <artifactId>kafka-clients</artifactId>
-    <version>1.0.0</version>
+    <version>{{fullDotVersion}}</version>
 </dependency>
               
 
@@ -245,4 +245,4 @@ // Display docs subnav items $('.b-nav__docs').parent().toggleClass('nav__item__with__subs--expanded'); }); - \ No newline at end of file + diff --git a/docs/upgrade.html b/docs/upgrade.html index 86999cd..ad665ad 100644 --- a/docs/upgrade.html +++ b/docs/upgrade.html @@ -129,7 +129,8 @@
Upgrading a 1.0.0 Kafka Streams Application
  • Upgrading your Streams application from 0.11.0 to 1.0.0 does not require a broker upgrade. - A Kafka Streams 1.0.0 application can connect to 0.11.0, 0.10.2 and 0.10.1 brokers (it is not possible to connect to 0.10.0 brokers though).
  • + A Kafka Streams 1.0.0 application can connect to 0.11.0, 0.10.2 and 0.10.1 brokers (it is not possible to connect to 0.10.0 brokers though). + However, Kafka Streams 1.0 requires 0.10 message format or newer and does not work with older message formats.
  • If you are monitoring on streams metrics, you will need make some changes to the metrics names in your reporting and monitoring code, because the metrics sensor hierarchy was changed.
  • There are a few public APIs including ProcessorContext#schedule(), Processor#punctuate() and KStreamBuilder, TopologyBuilder are being deprecated by new APIs. We recommend making corresponding code changes, which should be very minor since the new APIs look quite similar, when you upgrade. -- To stop receiving notification emails like this one, please contact mjsax@apache.org.