Skip to content

Commit

Permalink
Add hive 4.0 image
Browse files Browse the repository at this point in the history
  • Loading branch information
mayankvadariya committed Dec 9, 2024
1 parent d5cc83b commit 314e24d
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ jobs:
- image: hive3.1-hive
platforms: linux/amd64,linux/arm64
test: hive3.1-hive
- image: hive4.0-hive
platforms: linux/amd64
test: hive4.0-hive
- image: hdp3.1-hive-kerberized
test: hdp3.1-hive
# TODO add test https://github.com/trinodb/trino/issues/14543
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ jobs:
testing/spark3-hudi
testing/polaris-catalog
testing/unity-catalog
testing/hive4.0-hive
)
referenced_images=("${skipped_images[@]}" "${single_arch[@]}" "${multi_arch[@]}")
make meta
Expand Down
19 changes: 19 additions & 0 deletions bin/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,15 @@ function run_hive_transactional_tests() {
true
}

function check_hive4() {
environment_compose exec hiveserver2 beeline -u jdbc:hive2://localhost:10000 -e 'SELECT 1;' >/dev/null 2>&1
}

function run_hive4_tests() {
environment_compose exec hiveserver2 beeline -u jdbc:hive2://localhost:10000 -e 'SHOW DATABASES;' &&
true
}

function check_spark() {
environment_compose exec spark curl --http0.9 -f http://localhost:10213 -o /dev/null
}
Expand Down Expand Up @@ -186,6 +195,16 @@ for ARCH in "${platforms[@]}"; do
test true
elif [[ ${ENVIRONMENT} == "kerberos" ]]; then
run_kerberos_tests
elif [[ ${ENVIRONMENT} == *"hive4"* ]]; then
# wait until hiveserver is started
retry check_hive4

# run tests
set -x
set +e
sleep 10
run_hive4_tests
# TODO add transactional hive tests
elif [[ ${ENVIRONMENT} == *"hive"* ]]; then
# wait until hadoop processes is started
retry check_hadoop
Expand Down
7 changes: 7 additions & 0 deletions etc/compose/hive4.0-hive/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: '2.0'
services:
hiveserver2:
hostname: hiveserver2
image: testing/hive4.0-hive:latest$ARCH
environment:
- SERVICE_NAME=hiveserver2
25 changes: 25 additions & 0 deletions testing/hive4.0-hive/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

FROM apache/hive:4.0.0

# TODO replace with aws sdk v2
ARG AWS_JAVA_SDK_BUNDLE_VERSION=1.12.367
ARG HADOOP_AWS_VERSION=3.3.6

USER root
RUN apt-get -y update
RUN apt install curl -y

RUN mkdir -p /opt/hive/auxlib && \
curl -fLsS -o /opt/hive/auxlib/aws-java-sdk-bundle-$AWS_JAVA_SDK_BUNDLE_VERSION.jar https://repo1.maven.org/maven2/com/amazonaws/aws-java-sdk-bundle/$AWS_JAVA_SDK_BUNDLE_VERSION/aws-java-sdk-bundle-$AWS_JAVA_SDK_BUNDLE_VERSION.jar && \
curl -fLsS -o /opt/hive/auxlib/hadoop-aws-$HADOOP_AWS_VERSION.jar https://repo1.maven.org/maven2/org/apache/hadoop/hadoop-aws/$HADOOP_AWS_VERSION/hadoop-aws-$HADOOP_AWS_VERSION.jar

0 comments on commit 314e24d

Please sign in to comment.