Skip to content

Commit dd15efe

Browse files
committed
Bump versions in Docker and other configurations
1 parent a424fe8 commit dd15efe

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

base-docker-image/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM openjdk:8-jdk-stretch
44
WORKDIR /opt
55
RUN apt-get update
66
RUN apt-get install -y bash curl maven python
7-
RUN curl -L 'http://archive.apache.org/dist/hadoop/core/hadoop-2.9.2/hadoop-2.9.2.tar.gz' | tar -xz
7+
RUN curl -L 'http://archive.apache.org/dist/hadoop/core/hadoop-3.2.1/hadoop-3.2.1.tar.gz' | tar -xz
88
RUN curl -L 'https://julialang-s3.julialang.org/bin/linux/x64/1.2/julia-1.2.0-linux-x86_64.tar.gz' | tar -xz
99

1010
# Copy the project

base-docker-image/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
<dependency>
4141
<groupId>org.apache.hadoop</groupId>
4242
<artifactId>hadoop-client</artifactId>
43-
<version>2.9.2</version>
43+
<version>3.2.1</version>
4444
</dependency>
4545
<dependency>
4646
<groupId>ca.umontreal.iro</groupId>

docker_run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ if [ ! -f /opt/ldbc_snb_datagen/params.ini ]; then
88
fi
99

1010
# Running the generator
11-
/opt/hadoop-2.9.2/bin/hadoop jar /opt/ldbc_snb_datagen/target/ldbc_snb_datagen-0.4.0-SNAPSHOT-jar-with-dependencies.jar /opt/ldbc_snb_datagen/params.ini
11+
/opt/hadoop-3.2.1/bin/hadoop jar /opt/ldbc_snb_datagen/target/ldbc_snb_datagen-0.4.0-SNAPSHOT-jar-with-dependencies.jar /opt/ldbc_snb_datagen/params.ini
1212

1313
# Cleanup
1414
rm -f m*personFactors*

run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ if [ ! -f params.ini ]; then
55
exit 1
66
fi
77

8-
DEFAULT_HADOOP_HOME=/home/user/hadoop-2.9.2 #change to your hadoop folder
8+
DEFAULT_HADOOP_HOME=/home/user/hadoop-3.2.1 #change to your hadoop folder
99
DEFAULT_LDBC_SNB_DATAGEN_HOME=`pwd` #change to your ldbc_snb_datagen folder
1010

1111
# allow overriding configuration from outside via environment variables

0 commit comments

Comments
 (0)