From 09c6c8fb77ca409927313cb47cf0c2290a996a17 Mon Sep 17 00:00:00 2001 From: Razvan-Daniel Mihai <84674+razvan@users.noreply.github.com> Date: Mon, 23 Sep 2024 13:42:00 +0300 Subject: [PATCH 1/2] feat(hbase): install the hostname command --- hbase/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hbase/Dockerfile b/hbase/Dockerfile index 961f3b2ad..f2ee8d2e0 100644 --- a/hbase/Dockerfile +++ b/hbase/Dockerfile @@ -332,7 +332,11 @@ microdnf update # The tar and python packages are required by the Phoenix command line. # We add zip and gzip because tar without compression is seldom useful. +# TODO: maybe hostname is useful enough to have in stackable-base ? +# hostname is required by the hbase/bin/graceful_stop.sh to identify the actual name +# of the region server that is being shut down. microdnf install \ + hostname \ gzip \ python \ python-pip \ From 2ccad9a3d6c29358f64c79a334e5014eefb2369b Mon Sep 17 00:00:00 2001 From: Razvan-Daniel Mihai <84674+razvan@users.noreply.github.com> Date: Thu, 26 Sep 2024 10:41:23 +0300 Subject: [PATCH 2/2] update changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e5ebfec84..f70c07c48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ All notable changes to this project will be documented in this file. - hadoop: Add patch "HADOOP-18516: Support Fixed SAS Token for ABFS Authentication" ([#852]). - hbase: Add hadoop-azure.jar to the lib directory to support the Azure Blob Filesystem and the Azure Data Lake Storage ([#853]). +- hbase: Add hostname as required by the graceful-stop.sh script ([#876]). - kafka: Add cyrus-sasl-gssapi package for kerberos ([#874]). ### Changed @@ -66,6 +67,7 @@ All notable changes to this project will be documented in this file. [#867]: https://github.com/stackabletech/docker-images/pull/867 [#868]: https://github.com/stackabletech/docker-images/pull/868 [#874]: https://github.com/stackabletech/docker-images/pull/874 +[#876]: https://github.com/stackabletech/docker-images/pull/876 ## [24.7.0] - 2024-07-24