#!/usr/bin/env bash # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. set -ex # The version of Kibosh to use for testing. # If you update this, also update tests/docker/Dockerfile export KIBOSH_VERSION=d85ac3ec44be0700efe605c16289fd901cfdaa13 if [ -z `which javac` ]; then apt-get -y update apt-get install -y software-properties-common python-software-properties add-apt-repository -y ppa:webupd8team/java apt-get -y update # Try to share cache. See Vagrantfile for details mkdir -p /var/cache/oracle-jdk8-installer if [ -e "/tmp/oracle-jdk8-installer-cache/" ]; then find /tmp/oracle-jdk8-installer-cache/ -not -empty -exec cp '{}' /var/cache/oracle-jdk8-installer/ \; fi if [ ! -e "/var/cache/oracle-jdk8-installer/jdk-8u171-linux-x64.tar.gz" ]; then # Grab a copy of the JDK since it has moved and original downloader won't work curl -s -L "https://s3-us-west-2.amazonaws.com/kafka-packages/jdk-8u171-linux-x64.tar.gz" -o /var/cache/oracle-jdk8-installer/jdk-8u171-linux-x64.tar.gz fi /bin/echo debconf shared/accepted-oracle-license-v1-1 select true | /usr/bin/debconf-set-selections # oracle-javaX-installer runs wget with a dot progress indicator which ends up # as one line per dot in the build logs. # To avoid this noise we redirect all output to a file that we only show if apt-get fails. echo "Installing JDK..." if ! apt-get -y install oracle-java8-installer oracle-java8-set-default >/tmp/jdk_install.log 2>&1 ; then cat /tmp/jdk_install.log echo "ERROR: JDK install failed" exit 1 fi echo "JDK installed: $(javac -version 2>&1)" if [ -e "/tmp/oracle-jdk8-installer-cache/" ]; then cp -R /var/cache/oracle-jdk8-installer/* /tmp/oracle-jdk8-installer-cache fi fi chmod a+rw /opt if [ -h /opt/kafka-dev ]; then # reset symlink rm /opt/kafka-dev fi ln -s /vagrant /opt/kafka-dev get_kafka() { version=$1 scala_version=$2 kafka_dir=/opt/kafka-$version url=https://s3-us-west-2.amazonaws.com/kafka-packages/kafka_$scala_version-$version.tgz # the .tgz above does not include the streams test jar hence we need to get it separately url_streams_test=https://s3-us-west-2.amazonaws.com/kafka-packages/kafka-streams-$version-test.jar if [ ! -d /opt/kafka-$version ]; then pushd /tmp curl -O $url curl -O $url_streams_test || true file_tgz=`basename $url` file_streams_jar=`basename $url_streams_test` || true tar -xzf $file_tgz rm -rf $file_tgz file=`basename $file_tgz .tgz` mv $file $kafka_dir mv $file_streams_jar $kafka_dir/libs || true popd fi } # Install Kibosh apt-get update -y && apt-get install -y git cmake pkg-config libfuse-dev pushd /opt git clone -q https://github.com/confluentinc/kibosh.git pushd "/opt/kibosh" git reset --hard $KIBOSH_VERSION mkdir "/opt/kibosh/build" pushd "/opt/kibosh/build" ../configure && make -j 2 popd popd popd # Test multiple Kafka versions # we want to use the latest Scala version per Kafka version # however, we cannot pull in Scala 2.12 builds atm, because Scala 2.12 requires Java 8, but we use Java 7 to run the system tests get_kafka 0.8.2.2 2.11 chmod a+rw /opt/kafka-0.8.2.2 get_kafka 0.9.0.1 2.11 chmod a+rw /opt/kafka-0.9.0.1 get_kafka 0.10.0.1 2.11 chmod a+rw /opt/kafka-0.10.0.1 get_kafka 0.10.1.1 2.11 chmod a+rw /opt/kafka-0.10.1.1 get_kafka 0.10.2.1 2.11 chmod a+rw /opt/kafka-0.10.2.1 get_kafka 0.11.0.2 2.11 chmod a+rw /opt/kafka-0.11.0.2 get_kafka 1.0.1 2.11 chmod a+rw /opt/kafka-1.0.1 get_kafka 1.1.0 2.11 chmod a+rw /opt/kafka-1.1.0 # For EC2 nodes, we want to use /mnt, which should have the local disk. On local # VMs, we can just create it if it doesn't exist and use it like we'd use # /tmp. Eventually, we'd like to also support more directories, e.g. when EC2 # instances have multiple local disks. if [ ! -e /mnt ]; then mkdir /mnt fi chmod a+rwx /mnt # Run ntpdate once to sync to ntp servers # use -u option to avoid port collision in case ntp daemon is already running ntpdate -u pool.ntp.org # Install ntp daemon - it will automatically start on boot apt-get -y install ntp