-
-
Save Laxman-SM/83b029d1069ae90cb99b2cc43769e969 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -eux | |
VERSION=0.172 | |
wget -O /tmp/HDInsightUtilities-v01.sh -q https://hdiconfigactions.blob.core.windows.net/linuxconfigactionmodulev01/HDInsightUtilities-v01.sh && source /tmp/HDInsightUtilities-v01.sh && rm -f /tmp/HDInsightUtilities-v01.sh | |
mkdir -p /var/lib/presto | |
chmod -R 777 /var/lib/presto/ | |
if [[ `hostname -f` == `get_primary_headnode` ]]; then | |
apt-get update | |
which mvn &> /dev/null || apt-get -y -qq install maven | |
cd /var/lib/presto | |
wget https://github.com/dharmeshkakadia/presto-hdinsight/archive/test.tar.gz -O presto-hdinsight.tar.gz | |
tar xzf presto-hdinsight.tar.gz | |
cd presto-hdinsight-test | |
./createsliderbuild.sh $VERSION | |
slider package --install --name presto1 --package build/presto-yarn-package.zip --replacepkg | |
./createconfigs.sh $VERSION | |
slider exists presto1 --live && slider stop presto1 --force | |
slider exists presto1 && slider destroy presto1 --force | |
slider create presto1 --template appConfig-default.json --resources resources-default.json | |
fi | |
if [[ `hostname -f` == `get_primary_headnode` || `hostname -f` == `get_secondary_headnode` ]]; then | |
wget https://repo1.maven.org/maven2/com/facebook/presto/presto-cli/$VERSION/presto-cli-$VERSION-executable.jar -O /usr/local/bin/presto-cli | |
chmod +x /usr/local/bin/presto-cli | |
until slider registry --name presto1 --getexp presto ; do | |
echo "waiting for presto to start.." | |
sleep 10 | |
done | |
cat > /usr/local/bin/presto <<EOF | |
#!/bin/bash | |
presto-cli --server $(slider registry --name presto1 --getexp presto | grep value | grep -o "[0-9]*\.[0-9]*\.[0-9]*\.[0-9]*:[0-9]*") --catalog hive "\$@" | |
EOF | |
chmod +x /usr/local/bin/presto | |
fi | |
# Test | |
if [[ `hostname -f` == `get_primary_headnode` ]]; then | |
./integration-tests.sh | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment