Skip to content

chore: support for hbase 2.6.1 #627

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

Merged
merged 2 commits into from
Feb 12, 2025
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
- Run a `containerdebug` process in the background of each HBase container to collect debugging information ([#605]).
- Aggregate emitted Kubernetes events on the CustomResources ([#612]).
- Support configuring JVM arguments ([#620]).
- Added support for HBase 2.6.1 ([#627]):

### Removed

Expand All @@ -25,6 +26,7 @@
[#611]: https://github.com/stackabletech/hbase-operator/pull/611
[#612]: https://github.com/stackabletech/hbase-operator/pull/612
[#620]: https://github.com/stackabletech/hbase-operator/pull/620
[#627]: https://github.com/stackabletech/hbase-operator/pull/627

## [24.11.1] - 2025-01-09

Expand Down
5 changes: 2 additions & 3 deletions docs/modules/hbase/partials/supported-versions.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@
// This is a separate file, since it is used by both the direct HBase-Operator documentation, and the overarching
// Stackable Platform documentation.

- 2.6.0 (Experimental)
- 2.4.18 (LTS)
- 2.4.17 (Deprecated)
- 2.6.1 (LTS)
- 2.4.18 (Deprecated)
4 changes: 4 additions & 0 deletions tests/templates/kuttl/snapshot-export/30_test-export.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ hbase shell create-snapshot.hbase 2>&1 | \
grep '=> \["snap"\]' > /dev/null

# Export local snapshot to S3
# --no-checksum-verify is needed for HBase 2.6.1 until this is fixed: https://issues.apache.org/jira/browse/HBASE-28998
export-snapshot-to-s3 \
--no-checksum-verify \
--snapshot snap \
--copy-to s3a://hbase/snap \
--overwrite 2>&1 | \
Expand All @@ -24,7 +26,9 @@ hbase shell delete-snapshot.hbase 2>&1 | \
grep '=> \[\]' > /dev/null

# Import snapshot from S3
# --no-checksum-verify is needed for HBase 2.6.1 until this is fixed: https://issues.apache.org/jira/browse/HBASE-28998
export-snapshot-to-s3 \
--no-checksum-verify \
--snapshot snap \
--copy-from s3a://hbase/snap \
--copy-to hdfs://test-hdfs/hbase \
Expand Down
10 changes: 5 additions & 5 deletions tests/test-definition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@
dimensions:
- name: hbase
values:
- 2.6.0
- 2.4.18
- 2.6.1
# To use a custom image, add a comma and the full name after the product version
# - 2.6.0,oci.stackable.tech/sandbox/hbase:2.6.0-stackable0.0.0-dev
# - 2.6.1,oci.stackable.tech/sandbox/hbase:2.6.1-stackable0.0.0-dev
# - 2.4.18,oci.stackable.tech/sandbox/hbase:2.4.18-stackable0.0.0-dev
- name: hbase-opa
values:
- 2.6.0
- 2.6.1
# To use a custom image, add a comma and the full name after the product version
# - 2.6.0,oci.stackable.tech/sandbox/hbase:2.6.0-stackable0.0.0-dev
# - 2.6.1,oci.stackable.tech/sandbox/hbase:2.6.1-stackable0.0.0-dev
- name: hbase-latest
values:
- 2.6.0
- 2.6.1
# - 2.4.18,oci.stackable.tech/sandbox/hbase:2.4.18-stackable0.0.0-dev
- name: hdfs
values:
Expand Down
Loading