You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@samza.apache.org by ja...@apache.org on 2018/04/16 18:44:16 UTC

samza-hello-samza git commit: SAMZA-1592: Fix Hello-Samza latest after Kafka 0.11 upgrade in Samza

Repository: samza-hello-samza
Updated Branches:
  refs/heads/latest 23c79bcae -> cffd9fef6


SAMZA-1592: Fix Hello-Samza latest after Kafka 0.11 upgrade in Samza

After the Kafka-0.11 upgrade, the latest branch in hello-samza (and hence all our open-source tutorials that rely on it) are broken. Users who follow the tutorial will see a `NoSuchMethodError` when starting their job due to a mismatch of Kafka versions. This PR makes both Kafka versions consistent by updating the hello-samza tutorial to use Kafka-0.11

Author: Jagadish <jv...@linkedin.com>

Reviewers: Prateek M<pm...@linkedin.com>

Closes #32 from vjagadish1989/latest-2


Project: http://git-wip-us.apache.org/repos/asf/samza-hello-samza/repo
Commit: http://git-wip-us.apache.org/repos/asf/samza-hello-samza/commit/cffd9fef
Tree: http://git-wip-us.apache.org/repos/asf/samza-hello-samza/tree/cffd9fef
Diff: http://git-wip-us.apache.org/repos/asf/samza-hello-samza/diff/cffd9fef

Branch: refs/heads/latest
Commit: cffd9fef62778c7a27f0547e375a0dee8288516a
Parents: 23c79bc
Author: Jagadish <jv...@linkedin.com>
Authored: Mon Apr 16 11:43:50 2018 -0700
Committer: Jagadish <jv...@linkedin.com>
Committed: Mon Apr 16 11:43:50 2018 -0700

----------------------------------------------------------------------
 gradle.properties | 2 +-
 pom.xml           | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/samza-hello-samza/blob/cffd9fef/gradle.properties
----------------------------------------------------------------------
diff --git a/gradle.properties b/gradle.properties
index f14b8f7..6bc7384 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -18,7 +18,7 @@
  */
 
 SAMZA_VERSION=0.14.1-SNAPSHOT
-KAFKA_VERSION=0.10.1.1
+KAFKA_VERSION=0.11.0.2
 HADOOP_VERSION=2.6.1
 
 SLF4J_VERSION = 1.7.7

http://git-wip-us.apache.org/repos/asf/samza-hello-samza/blob/cffd9fef/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index dbfe749..ddb3939 100644
--- a/pom.xml
+++ b/pom.xml
@@ -86,7 +86,7 @@ under the License.
     <dependency>
       <groupId>org.apache.kafka</groupId>
       <artifactId>kafka_2.11</artifactId>
-      <version>0.10.1.1</version>
+      <version>0.11.0.2</version>
     </dependency>
     <dependency>
       <groupId>org.schwering</groupId>