File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 1.2.1
4+
5+ * [ DOP-4594] Use https://dlcdn.apache.org instead of https://apache.org/dist
6+
37## 1.2.0
48
59* [ DOP-4594] Add substitutions support in metastore URL
6- * [ DOP-4594] Use archive.apache.org only as fallback
10+ * [ DOP-4594] Use http:// archive.apache.org only as fallback URL if package is missing in https://apache.org/dist
711* [ DOP-4594] Upgrade hdfs data during start
812
913## 1.1.0
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ ENV LD_LIBRARY_PATH $HADOOP_HOME/lib/native:$LD_LIBRARY_PATH
99
1010RUN apt-get update && apt-get install --no-install-recommends -y openssh-client openssh-server
1111
12- RUN wget http ://apache.org/dist /hadoop/common/hadoop-${HADOOP_VERSION}/hadoop-${HADOOP_VERSION}.tar.gz || wget http://archive.apache.org/dist/hadoop/common/hadoop-${HADOOP_VERSION}/hadoop-${HADOOP_VERSION}.tar.gz && \
12+ RUN wget https ://dlcdn. apache.org/hadoop/common/hadoop-${HADOOP_VERSION}/hadoop-${HADOOP_VERSION}.tar.gz || wget http://archive.apache.org/dist/hadoop/common/hadoop-${HADOOP_VERSION}/hadoop-${HADOOP_VERSION}.tar.gz && \
1313 tar -xzf hadoop-${HADOOP_VERSION}.tar.gz && \
1414 rm hadoop-${HADOOP_VERSION}.tar.gz && \
1515 mv hadoop-${HADOOP_VERSION} $HADOOP_HOME && \
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ FROM alpine:3.17.3 AS hive-cache
55ARG HIVE_VERSION=2.1.1
66ENV HIVE_HOME /opt/hive
77
8- RUN wget https://apache.org/dist /hive/hive-${HIVE_VERSION}/apache-hive-${HIVE_VERSION}-bin.tar.gz || wget https://archive.apache.org/dist/hive/hive-${HIVE_VERSION}/apache-hive-${HIVE_VERSION}-bin.tar.gz && \
8+ RUN wget https://dlcdn. apache.org/hive/hive-${HIVE_VERSION}/apache-hive-${HIVE_VERSION}-bin.tar.gz || wget https://archive.apache.org/dist/hive/hive-${HIVE_VERSION}/apache-hive-${HIVE_VERSION}-bin.tar.gz && \
99 tar -xzf apache-hive-${HIVE_VERSION}-bin.tar.gz && \
1010 rm apache-hive-${HIVE_VERSION}-bin.tar.gz && \
1111 mv apache-hive-${HIVE_VERSION}-bin $HIVE_HOME && \
You can’t perform that action at this time.
0 commit comments