From 70fc58261b9c49db555fa9296f9e29fafde7539f Mon Sep 17 00:00:00 2001 From: Brent Gardner Date: Thu, 17 Nov 2022 14:06:11 -0700 Subject: [PATCH 1/3] configure_me_codegen retroactively reserved on our `bind_host` parameter name --- ballista/executor/Cargo.toml | 2 +- ballista/scheduler/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ballista/executor/Cargo.toml b/ballista/executor/Cargo.toml index 442f4f338..0f0837ccd 100644 --- a/ballista/executor/Cargo.toml +++ b/ballista/executor/Cargo.toml @@ -62,7 +62,7 @@ uuid = { version = "1.0", features = ["v4"] } [dev-dependencies] [build-dependencies] -configure_me_codegen = "0.4.0" +configure_me_codegen = "=0.4.0" # use libc on unix like platforms to set worker priority in DedicatedExecutor [target."cfg(unix)".dependencies.libc] diff --git a/ballista/scheduler/Cargo.toml b/ballista/scheduler/Cargo.toml index c144afe49..34cd1b26e 100644 --- a/ballista/scheduler/Cargo.toml +++ b/ballista/scheduler/Cargo.toml @@ -82,5 +82,5 @@ warp = "0.3" ballista-core = { path = "../core", version = "0.9.0" } [build-dependencies] -configure_me_codegen = "0.4.1" +configure_me_codegen = "=0.4.0" tonic-build = { version = "0.8", default-features = false, features = ["transport", "prost"] } From 7129e816bd2a7d79548f8bf765331c0638b42064 Mon Sep 17 00:00:00 2001 From: Brent Gardner Date: Thu, 17 Nov 2022 16:09:18 -0700 Subject: [PATCH 2/3] Add label and pray --- dev/docker/ballista-standalone.Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev/docker/ballista-standalone.Dockerfile b/dev/docker/ballista-standalone.Dockerfile index caa877c48..fb97375d4 100644 --- a/dev/docker/ballista-standalone.Dockerfile +++ b/dev/docker/ballista-standalone.Dockerfile @@ -17,6 +17,8 @@ FROM ubuntu:22.04 +LABEL org.opencontainers.image.source https://github.com/apache/arrow-ballista + ARG RELEASE_FLAG=release ENV RELEASE_FLAG=${RELEASE_FLAG} From c9ed35f66fdb6402ab03818a459cdf68a9696583 Mon Sep 17 00:00:00 2001 From: Brent Gardner Date: Thu, 17 Nov 2022 16:10:34 -0700 Subject: [PATCH 3/3] Add more labels why not --- dev/docker/ballista-standalone.Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev/docker/ballista-standalone.Dockerfile b/dev/docker/ballista-standalone.Dockerfile index fb97375d4..ade413d4b 100644 --- a/dev/docker/ballista-standalone.Dockerfile +++ b/dev/docker/ballista-standalone.Dockerfile @@ -17,7 +17,9 @@ FROM ubuntu:22.04 -LABEL org.opencontainers.image.source https://github.com/apache/arrow-ballista +LABEL org.opencontainers.image.source="https://github.com/apache/arrow-ballista" +LABEL org.opencontainers.image.description="Apache Arrow Ballista Distributed SQL Query Engine" +LABEL org.opencontainers.image.licenses="Apache-2.0" ARG RELEASE_FLAG=release