Skip to content

Commit

Permalink
chore: Change Download Link from Cloudsuite.ch to Datasets.epfl.ch (#432
Browse files Browse the repository at this point in the history
)
  • Loading branch information
UlisesLuzius authored May 22, 2023
1 parent 68a67ba commit 4ab2c8e
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion benchmarks/web-search/dataset/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RUN BUILD_DEPS="wget curl ca-certificates" \
&& apt-get update -y && apt-get install -y --no-install-recommends ${BUILD_DEPS} \
&& rm -rf /var/lib/apt/lists/*

ENV INDEX_URL http://cloudsuite.ch/download/web_search/index_14GB.tar.gz
ENV INDEX_URL http://datasets.epfl.ch/cloudsuite/index_14GB.tar.gz

VOLUME ["/download"]

Expand Down
2 changes: 1 addition & 1 deletion benchmarks/web-search/index/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ENV NUTCH_VERSION 1.18
ENV NUTCH_HOME $BASE_PATH/apache-nutch-1.18
ENV SOLR_VERSION 9.1.1
ENV SOLR_HOME $BASE_PATH/solr-$SOLR_VERSION
ENV PACKAGES_URL http://cloudsuite.ch/download/web_search
ENV PACKAGES_URL http://datasets.epfl.ch/cloudsuite
ENV INDEX_URL $PACKAGES_URL/index
ENV SCHEMA_URL $PACKAGES_URL/schema.xml
ENV SOLR_CONFIG_URL $PACKAGES_URL/solrconfig.xml
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/web-search/server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN cat /root/limits.txt >> /etc/security/limits.conf
ENV BASE_PATH /usr/src
ENV SOLR_VERSION 9.1.1
ENV SOLR_HOME $BASE_PATH/solr-$SOLR_VERSION
ENV PACKAGES_URL http://cloudsuite.ch/download/web_search
ENV PACKAGES_URL http://datasets.epfl.ch/cloudsuite
ENV INDEX_URL $PACKAGES_URL/index
ENV SCHEMA_URL $PACKAGES_URL/schema.xml
ENV SOLR_CONFIG_URL $PACKAGES_URL/solrconfig.xml
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/web-serving/db_server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM cloudsuite/mysql:mariadb-10.6

ENV root_password root
ENV DB_URL http://cloudsuite.ch/download/web_serving/ELGG_DB.tar.gz
ENV DB_URL http://datasets.epfl.ch/cloudsuite/ELGG_DB.tar.gz

RUN apt-get update && apt-get install -y --no-install-recommends wget mariadb-backup \
&& rm -rf /var/lib/apt/lists/*
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/web-serving/db_server/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

wget --progress=bar:force -O - --no-check-certificate https://cloudsuite.ch/download/web-serving/ELGG_DB.tar.gz | tar -zxvf -
wget --progress=bar:force -O - --no-check-certificate http://datasets.epfl.ch/cloudsuite/ELGG_DB.tar.gz | tar -zxvf -


# workaround for overlayfs:
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/web-serving/web_server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RUN cat /tmp/limits.conf.append >> /etc/security/limits.conf && rm -f /tmp/limit

# Checkout the Elgg installation
RUN mkdir /usr/share/nginx/html/elgg && \
wget --progress=bar:force -O - http://cloudsuite.ch/download/web-serving/elgg_installation_4.3.0.tar.gz | \
wget --progress=bar:force -O - http://datasets.epfl.ch/cloudsuite/elgg_installation_4.3.0.tar.gz | \
tar zxvf - -C ~ && \
mv ~/elgg_installation_4.3.0/* /usr/share/nginx/html/elgg/.

Expand Down
2 changes: 1 addition & 1 deletion datasets/twitter-dataset-graph/latest/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RUN BUILD_DEPS="wget unzip" \
&& apt-get update && apt-get install -y --no-install-recommends ${BUILD_DEPS} \
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /data \
&& wget --no-check-certificate -O /data/Twitter-dataset.zip https://cloudsuite.ch/download/graph_analytics/twitter_dataset.zip \
&& wget --no-check-certificate -O /data/Twitter-dataset.zip http://datasets.epfl.ch/cloudsuite/twitter_dataset.zip \
&& unzip -d /data /data/Twitter-dataset.zip \
&& rm /data/Twitter-dataset.zip \
&& apt-get purge -y --auto-remove ${BUILD_DEPS}
Expand Down

0 comments on commit 4ab2c8e

Please sign in to comment.