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

feat(hbase): install the hostname command #876

Closed
wants to merge 3 commits into from
Closed
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,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
Expand Down Expand Up @@ -67,6 +68,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
[#877]: https://github.com/stackabletech/docker-images/pull/877

## [24.7.0] - 2024-07-24
Expand Down
4 changes: 4 additions & 0 deletions hbase/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Comment on lines +335 to +337
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it is useful enough to put in stackable-base.

microdnf install \
hostname \
gzip \
python \
python-pip \
Expand Down