Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update apache/impala docker tag to v4.4.1 #10126

Merged
merged 2 commits into from
Sep 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 17 additions & 7 deletions compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,8 @@ services:
- kudu cluster ksck kudu:7051

impala-hive-metastore:
image: apache/impala:4.0.0-impala_quickstart_hms
image: impala-quickstart_hms
build: ./docker/impala/quickstart_hms
container_name: impala-hive-metastore
command: hms
volumes:
Expand All @@ -456,14 +457,21 @@ services:
# shared volume.
- impala:/user/hive/warehouse
- ./docker/impala/conf:/opt/hive/conf:ro
healthcheck:
interval: 3s
retries: 20
test:
- CMD-SHELL
- nc -z 127.0.0.1 9083 && nc -z impala-hive-metastore 9083 && nc -z impala-hive-metastore.impala 9083
networks:
impala:
aliases:
- impala-hive-metastore
- impala-hive-metastore.impala

statestored:
image: apache/impala:4.0.0-statestored
image: impala-statestored
build: ./docker/impala/statestored
ports:
- 25010:25010 # Web debug UI
command:
Expand All @@ -473,7 +481,7 @@ services:
volumes:
- ./docker/impala/conf:/opt/impala/conf:ro
healthcheck:
interval: 30s
interval: 3s
retries: 20
test:
- CMD-SHELL
Expand All @@ -487,7 +495,8 @@ services:
condition: service_started
statestored:
condition: service_healthy
image: apache/impala:4.0.0-catalogd
image: impala-catalogd
build: ./docker/impala/catalogd
ports:
- 25020:25020 # Web debug UI
command:
Expand All @@ -502,7 +511,7 @@ services:
- impala:/user/hive/warehouse
- ./docker/impala/conf:/opt/impala/conf:ro
healthcheck:
interval: 30s
interval: 3s
retries: 20
test:
- CMD-SHELL
Expand All @@ -511,7 +520,8 @@ services:
- impala

impala:
image: apache/impala:4.0.0-impalad_coord_exec
image: impala-coord_exec
build: ./docker/impala/coord_exec
depends_on:
statestored:
condition: service_healthy
Expand All @@ -524,7 +534,7 @@ services:
ports:
- 21050:21050 # HS2 endpoint
healthcheck:
interval: 30s
interval: 3s
retries: 20
test:
- CMD-SHELL
Expand Down
4 changes: 4 additions & 0 deletions docker/impala/catalogd/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
FROM apache/impala:4.4.1-catalogd
ENV DEBIAN_FRONTEND=noninteractive
USER root
RUN apt-get update -y && apt-get install -y netcat-openbsd
4 changes: 4 additions & 0 deletions docker/impala/coord_exec/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
FROM apache/impala:4.4.1-impalad_coord_exec
ENV DEBIAN_FRONTEND=noninteractive
USER root
RUN apt-get update -y && apt-get install -y netcat-openbsd
4 changes: 4 additions & 0 deletions docker/impala/quickstart_hms/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
FROM apache/impala:4.4.1-impala_quickstart_hms
ENV DEBIAN_FRONTEND=noninteractive
USER root
RUN apt-get update -y && apt-get install -y netcat-openbsd
4 changes: 4 additions & 0 deletions docker/impala/statestored/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
FROM apache/impala:4.4.1-statestored
ENV DEBIAN_FRONTEND=noninteractive
USER root
RUN apt-get update -y && apt-get install -y netcat-openbsd