-
Notifications
You must be signed in to change notification settings - Fork 4
/
Dockerfile
53 lines (41 loc) · 1.86 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
FROM bde2020/hadoop-base:2.0.0-hadoop2.7.4-java8
MAINTAINER Yiannis Mouchakis <[email protected]>
MAINTAINER Ivan Ermilov <[email protected]>
# Allow buildtime config of HIVE_VERSION
ARG HIVE_VERSION
# Set HIVE_VERSION from arg if provided at build, env if provided at run, or default
# https://docs.docker.com/engine/reference/builder/#using-arg-variables
# https://docs.docker.com/engine/reference/builder/#environment-replacement
ENV HIVE_VERSION=${HIVE_VERSION:-2.3.2}
ENV HIVE_HOME /opt/hive
ENV PATH $HIVE_HOME/bin:$PATH
ENV HADOOP_HOME /opt/hadoop-$HADOOP_VERSION
WORKDIR /opt
#Install Hive and PostgreSQL JDBC
RUN apt-get update && apt-get install -y wget procps && \
wget https://archive.apache.org/dist/hive/hive-$HIVE_VERSION/apache-hive-$HIVE_VERSION-bin.tar.gz && \
tar -xzvf apache-hive-$HIVE_VERSION-bin.tar.gz && \
mv apache-hive-$HIVE_VERSION-bin hive && \
wget https://jdbc.postgresql.org/download/postgresql-9.4.1212.jar -O $HIVE_HOME/lib/postgresql-jdbc.jar && \
rm apache-hive-$HIVE_VERSION-bin.tar.gz && \
apt-get --purge remove -y wget && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
#Spark should be compiled with Hive to be able to use it
#hive-site.xml should be copied to $SPARK_HOME/conf folder
#Custom configuration goes here
ADD hive/conf/hive-site.xml $HIVE_HOME/conf
ADD hive/conf/beeline-log4j2.properties $HIVE_HOME/conf
ADD hive/conf/hive-env.sh $HIVE_HOME/conf
ADD hive/conf/hive-exec-log4j2.properties $HIVE_HOME/conf
ADD hive/conf/hive-log4j2.properties $HIVE_HOME/conf
ADD hive/conf/ivysettings.xml $HIVE_HOME/conf
ADD hive/conf/llap-daemon-log4j2.properties $HIVE_HOME/conf
COPY hivescript/startup.sh /usr/local/bin/
RUN chmod +x /usr/local/bin/startup.sh
COPY hivescript/entrypoint.sh /usr/local/bin/
RUN chmod +x /usr/local/bin/entrypoint.sh
EXPOSE 10000
EXPOSE 10002
ENTRYPOINT ["hivescript/entrypoint.sh"]
CMD startup.sh