Git Product home page Git Product logo

Comments (4)

hmusavi avatar hmusavi commented on August 28, 2024 5

I had the same problem and it turned out to be caused by download-kafka.sh having Windows style EOL (CRLF instead of LF) when cloned. If you are running on a Windows machine, make sure that you configure git with core.autocrlf false.

git config --global core.autocrlf false

from kafka-docker.

igorbarinov avatar igorbarinov commented on August 28, 2024

Looks like the problem with parsing a mirror list in download-kafka.sh.
For a temp solution you can comment out everything in download-kafka.sh
and add
wget -q http://mirrors.advancedhosters.com/apache//kafka/0.8.2.1/kafka_2.10-0.8.2.1.tgz -O "/tmp/kafka_${SCALA_VERSION}-${KAFKA_VERSION}.tgz

complete snippet:

#!/bin/sh

#mirror=$(curl --stderr /dev/null https://www.apache.org/dyn/closer.cgi\?as_json\=1 | sed -rn 's/.*"preferred":.*"(.*)"/\1/p')
#url="${mirror}kafka/${KAFKA_VERSION}/kafka_${SCALA_VERSION}-${KAFKA_VERSION}.tgz"
#wget -q "${url}" -O "/tmp/kafka_${SCALA_VERSION}-${KAFKA_VERSION}.tgz"
wget -q http://mirrors.advancedhosters.com/apache//kafka/0.8.2.1/kafka_2.10-0.8.2.1.tgz -O "/tmp/kafka_${SCALA_VERSION}-${KAFKA_VERSION}.tgz

from kafka-docker.

rebrendler avatar rebrendler commented on August 28, 2024

There are two issues with this script running on OSX:

  1. the OSX version of sed is not command-line compatible with gnu sed. The '-r' used by gnu needs to be '-E' for OSX.

  2. The pattern pulling "preferred" from the mirror host is returning an extra '}' character at the end of the match on both gnu and OSX sed

Easiest solution is to install jq, and replace the sed command with jq --raw-output ".preferred"

from kafka-docker.

wurstmeister avatar wurstmeister commented on August 28, 2024

this has been fixed in #49

from kafka-docker.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.