Repository: samza-hello-samza
Updated Branches:
  refs/heads/master 2cb6c87f9 -> 5fa742ac4


Change Kafka Version used in bin/grid

The old tgz used in bin/grid is broken and it makes bin/grid can't install 
Kafka. So I changed it to a newer version to make it run properly again.

Author: Imre Nagi <[email protected]>

Reviewers: Jagadish<[email protected]>

Closes #26 from imrenagi/master


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/5fa742ac
Tree: http://git-wip-us.apache.org/repos/asf/samza-hello-samza/tree/5fa742ac
Diff: http://git-wip-us.apache.org/repos/asf/samza-hello-samza/diff/5fa742ac

Branch: refs/heads/master
Commit: 5fa742ac4426fa00be6ecdf23f5efd4d4a4d058f
Parents: 2cb6c87
Author: Imre Nagi <[email protected]>
Authored: Mon Dec 11 18:28:38 2017 -0800
Committer: Jagadish <[email protected]>
Committed: Mon Dec 11 18:28:38 2017 -0800

----------------------------------------------------------------------
 bin/grid | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/samza-hello-samza/blob/5fa742ac/bin/grid
----------------------------------------------------------------------
diff --git a/bin/grid b/bin/grid
index 5dff403..f31824b 100755
--- a/bin/grid
+++ b/bin/grid
@@ -35,7 +35,7 @@ DOWNLOAD_CACHE_DIR=$HOME/.samza/download
 COMMAND=$1
 SYSTEM=$2
 
-DOWNLOAD_KAFKA=http://www.us.apache.org/dist/kafka/0.10.1.1/kafka_2.11-0.10.1.1.tgz
+DOWNLOAD_KAFKA=http://www.us.apache.org/dist/kafka/0.10.2.1/kafka_2.11-0.10.2.1.tgz
 
DOWNLOAD_YARN=https://archive.apache.org/dist/hadoop/common/hadoop-2.6.1/hadoop-2.6.1.tar.gz
 
DOWNLOAD_ZOOKEEPER=http://archive.apache.org/dist/zookeeper/zookeeper-3.4.3/zookeeper-3.4.3.tar.gz
 
@@ -112,7 +112,7 @@ install_yarn() {
 
 install_kafka() {
   mkdir -p "$DEPLOY_ROOT_DIR"
-  install kafka $DOWNLOAD_KAFKA kafka_2.11-0.10.1.1
+  install kafka $DOWNLOAD_KAFKA kafka_2.11-0.10.2.1
   # have to use SIGTERM since nohup on appears to ignore SIGINT
   # and Kafka switched to SIGINT in KAFKA-1031.
   sed -i.bak 's/SIGINT/SIGTERM/g' 
$DEPLOY_ROOT_DIR/kafka/bin/kafka-server-stop.sh

Reply via email to