Created
May 17, 2023 13:31
-
-
Save tiagotele/d719c863f3d81e932689604357df523b to your computer and use it in GitHub Desktop.
This file contains 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 | |
HADOOP_VERSION='3.3.1' | |
HADOOP_URL=https://dlcdn.apache.org/hadoop/common/hadoop-$HADOOP_VERSION/hadoop-$HADOOP_VERSION.tar.gz | |
echo "Downloading Hadoop jars..." | |
wget $HADOOP_URL -P /tmp | |
echo "Done!" | |
# Unpack Hadoop | |
echo "Creating folder /home/ec2-user/SageMaker/hadoop..." | |
mkdir -p /home/ec2-user/SageMaker/hadoop | |
echo "Untar hadoop bundle..." | |
tar -xvf /tmp/hadoop-$HADOOP_VERSION.tar.gz -C /home/ec2-user/SageMaker/hadoop --strip-components=1 | |
echo "Done" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment