Skip to content

Commit 5dad91d

Browse files
committed
Build docker image with hops hadoop distribution
1 parent 4944d54 commit 5dad91d

File tree

5 files changed

+67
-31
lines changed

5 files changed

+67
-31
lines changed

Jenkinsfile

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
pipeline {
2+
agent {
3+
label "local"
4+
}
5+
environment {
6+
VERSION = readFile "${env.WORKSPACE}/version.txt"
7+
BUILD_BRANCH = readFile "${env.WORKSPACE}/build_branch.txt"
8+
}
9+
stages {
10+
stage("build and publish") {
11+
agent {
12+
label "local"
13+
}
14+
steps {
15+
sh """
16+
set -ex
17+
docker login -u ${env.DOCKER_USER} -p ${env.DOCKER_PASS}
18+
git checkout ${BUILD_BRANCH}
19+
./build_distribution.sh --spark-profile spark3 --hadoop-profile hadoop3.2
20+
deploy/kubernetes/docker/build.sh --hadoop-version 3.2.0.13-EE-SNAPSHOT --registry docker.hops.works
21+
RSS_VERSION=$(./mvnw help:evaluate -Dexpression=project.version 2>/dev/null | grep -v "INFO" | grep -v "WARNING" | tail -n 1)
22+
mkdir -p /opt/repository/master/rss/${VERSION}/
23+
cp client/target/rss-client-{RSS_VERSION}.jar /opt/repository/master/rss/${VERSION}/
24+
"""
25+
}
26+
}
27+
}
28+
29+
post {
30+
success {
31+
build job:'LC-Docker-imgs', parameters: [
32+
string(name: 'image', value: "git"),
33+
string(name: 'branch', value: "master")
34+
]
35+
}
36+
}
37+
}

build_branch.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
branch-0.9

deploy/kubernetes/docker/Dockerfile

+6-20
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,4 @@
1-
#
2-
# Licensed to the Apache Software Foundation (ASF) under one or more
3-
# contributor license agreements. See the NOTICE file distributed with
4-
# this work for additional information regarding copyright ownership.
5-
# The ASF licenses this file to You under the Apache License, Version 2.0
6-
# (the "License"); you may not use this file except in compliance with
7-
# the License. You may obtain a copy of the License at
8-
#
9-
# http://www.apache.org/licenses/LICENSE-2.0
10-
#
11-
# Unless required by applicable law or agreed to in writing, software
12-
# distributed under the License is distributed on an "AS IS" BASIS,
13-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14-
# See the License for the specific language governing permissions and
15-
# limitations under the License.
16-
#
1+
# syntax=docker/dockerfile:experimental
172

183
ARG BASE_IMAGE=uniffle-base:latest
194
FROM ${BASE_IMAGE}
@@ -24,6 +9,7 @@ ARG RSS_VERSION
249
ARG AUTHOR=unknown
2510
ARG GIT_BRANCH=unknown
2611
ARG GIT_COMMIT=unknown
12+
ARG HADOOP_FILE=hops-$HADOOP_VERSION.tgz
2713

2814
LABEL author=${AUTHOR}
2915
LABEL git-branch=${GIT_BRANCH}
@@ -44,10 +30,10 @@ COPY rss-env.sh /data/rssadmin/rss/bin
4430

4531
COPY start.sh /data/rssadmin/rss/bin
4632

47-
COPY hadoop-${HADOOP_VERSION}.tar.gz /data/rssadmin
48-
RUN tar -zxvf /data/rssadmin/hadoop-${HADOOP_VERSION}.tar.gz -C /data/rssadmin
49-
RUN mv /data/rssadmin/hadoop-${HADOOP_VERSION} /data/rssadmin/hadoop
50-
RUN rm -rf /data/rssadmin/hadoop-${HADOOP_VERSION}.tar.gz
33+
COPY $HADOOP_FILE /data/rssadmin
34+
RUN tar -zxvf /data/rssadmin/$HADOOP_FILE -C /data/rssadmin
35+
RUN mv /data/rssadmin/hops-${HADOOP_VERSION} /data/rssadmin/hadoop
36+
RUN rm -rf /data/rssadmin/$HADOOP_FILE
5137
COPY hadoopconfig/ /data/rssadmin/hadoop/etc/hadoop
5238

5339
ENV RSS_VERSION ${RSS_VERSION}

deploy/kubernetes/docker/build.sh

+22-11
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ function exit_with_usage() {
3535
}
3636

3737
REGISTRY="docker.io/library"
38-
HADOOP_VERSION=2.8.5
39-
HADOOP_SHORT_VERSION=$(echo $HADOOP_VERSION | awk -F "." '{print $1"."$2}')
38+
HADOOP_VERSION=3.2.0.13-SNAPSHOT
4039
AUTHOR=$(whoami)
4140
# If you are based in China, you could pass --apache-mirror <a_mirror_url> when building this.
4241
APACHE_MIRROR="https://dlcdn.apache.org"
@@ -92,6 +91,8 @@ while (( "$#" )); do
9291
shift
9392
done
9493

94+
HADOOP_SHORT_VERSION=$(echo $HADOOP_VERSION | awk -F "." '{print $1"."$2}')
95+
9596
if [ -z "$BASE_IMAGE" ]; then
9697
echo "start building base image: uniffle-base"
9798
docker build -t "uniffle-base:latest" \
@@ -101,14 +102,21 @@ else
101102
echo "using base image(${BASE_IMAGE}) to build rss server"
102103
fi
103104

105+
if test -f "/root/.wgetrc"; then
106+
wget https://nexus.hops.works/repository/hopshadoop/hops-$HADOOP_VERSION_EE.tgz
107+
else
108+
wget https://repo.hops.works/master/hops-$HADOOP_VERSION.tgz
109+
fi
104110

105-
HADOOP_FILE=hadoop-${HADOOP_VERSION}.tar.gz
106-
ARCHIVE_HADOOP_URL=https://archive.apache.org/dist/hadoop/core/hadoop-${HADOOP_VERSION}/${HADOOP_FILE}
107-
HADOOP_URL=${APACHE_MIRROR}/hadoop/core/hadoop-${HADOOP_VERSION}/${HADOOP_FILE}
108-
echo "HADOOP_URL is either ${HADOOP_URL} or ${ARCHIVE_HADOOP_URL}"
109-
if [ ! -e "$HADOOP_FILE" ]; \
110-
then wget "${HADOOP_URL}" || wget "$ARCHIVE_HADOOP_URL"; \
111-
else echo "${HADOOP_FILE} has been downloaded"; \
111+
HADOOP_FILE=hops-$HADOOP_VERSION.tgz
112+
if [ ! -e "$HADOOP_FILE" ]; then
113+
if test -f "/root/.wgetrc"; then
114+
wget https://nexus.hops.works/repository/hopshadoop/$HADOOP_FILE
115+
else
116+
wget https://repo.hops.works/master/$HADOOP_FILE
117+
fi
118+
else
119+
echo "${HADOOP_FILE} has been downloaded";
112120
fi
113121

114122
RSS_DIR=../../..
@@ -126,17 +134,20 @@ cp "$RSS_DIR/$RSS_FILE" .
126134

127135
GIT_BRANCH=$(git rev-parse --abbrev-ref HEAD)
128136
GIT_COMMIT=$(git describe --dirty --always --tags | sed 's/-/./g')
129-
echo "image version: ${IMAGE_VERSION:=$RSS_VERSION-$GIT_COMMIT}"
130137
IMAGE=$REGISTRY/rss-server:$IMAGE_VERSION
138+
IMAGE_VERSION=$(cat $RSS_DIR/version.txt | awk '{$1=$1; print}' | sed '/^$/d')
139+
echo "image version: ${IMAGE_VERSION}"
140+
IMAGE=$REGISTRY/rss:$IMAGE_VERSION
131141
echo "building image: $IMAGE"
132-
docker build --network=host -t "$IMAGE" \
142+
DOCKER_BUILDKIT=1 docker build --network=host -t "$IMAGE" \
133143
--build-arg RSS_VERSION="$RSS_VERSION" \
134144
--build-arg HADOOP_VERSION="$HADOOP_VERSION" \
135145
--build-arg HADOOP_SHORT_VERSION="$HADOOP_SHORT_VERSION" \
136146
--build-arg AUTHOR="$AUTHOR" \
137147
--build-arg GIT_COMMIT="$GIT_COMMIT" \
138148
--build-arg GIT_BRANCH="$GIT_BRANCH" \
139149
--build-arg BASE_IMAGE="$BASE_IMAGE" \
150+
--build-arg HADOOP_FILE="$HADOOP_FILE" \
140151
-f Dockerfile --no-cache .
141152

142153
if [ x"${PUSH_IMAGE}" == x"true" ]; then

version.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0.9.0

0 commit comments

Comments
 (0)