Skip to content

Commit

Permalink
chore(deps): update apache/impala docker tag to v4.4.1 (#10126)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Phillip Cloud <[email protected]>
  • Loading branch information
renovate[bot] and cpcloud authored Sep 14, 2024
1 parent ff3550c commit d0856f3
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 7 deletions.
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

0 comments on commit d0856f3

Please sign in to comment.