Skip to content

Commit 10b75c3

Browse files
committed
1 parent 5f63da3 commit 10b75c3

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
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

hdfs/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ENV LD_LIBRARY_PATH $HADOOP_HOME/lib/native:$LD_LIBRARY_PATH
99

1010
RUN 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 && \

hive/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ FROM alpine:3.17.3 AS hive-cache
55
ARG HIVE_VERSION=2.1.1
66
ENV 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 && \

0 commit comments

Comments
 (0)