Skip to content

Commit b7237c4

Browse files
committed
chore: support for hbase 2.6.1
1 parent 47d6a21 commit b7237c4

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
- Run a `containerdebug` process in the background of each HBase container to collect debugging information ([#605]).
1010
- Aggregate emitted Kubernetes events on the CustomResources ([#612]).
1111
- Support configuring JVM arguments ([#620]).
12+
- Added support for HBase 2.6.1 ([#627]):
1213

1314
### Removed
1415

@@ -25,6 +26,7 @@
2526
[#611]: https://github.com/stackabletech/hbase-operator/pull/611
2627
[#612]: https://github.com/stackabletech/hbase-operator/pull/612
2728
[#620]: https://github.com/stackabletech/hbase-operator/pull/620
29+
[#627]: https://github.com/stackabletech/hbase-operator/pull/627
2830

2931
## [24.11.1] - 2025-01-09
3032

docs/modules/hbase/partials/supported-versions.adoc

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,5 @@
22
// This is a separate file, since it is used by both the direct HBase-Operator documentation, and the overarching
33
// Stackable Platform documentation.
44

5-
- 2.6.0 (Experimental)
6-
- 2.4.18 (LTS)
7-
- 2.4.17 (Deprecated)
5+
- 2.6.1 (LTS)
6+
- 2.4.18 (Deprecated)

tests/templates/kuttl/snapshot-export/30_test-export.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ hbase shell create-snapshot.hbase 2>&1 | \
1414

1515
# Export local snapshot to S3
1616
export-snapshot-to-s3 \
17+
--no-checksum-verify \ # needed for HBase 2.6.1 until this is fixed: https://issues.apache.org/jira/browse/HBASE-28998
1718
--snapshot snap \
1819
--copy-to s3a://hbase/snap \
1920
--overwrite 2>&1 | \
@@ -25,6 +26,7 @@ hbase shell delete-snapshot.hbase 2>&1 | \
2526

2627
# Import snapshot from S3
2728
export-snapshot-to-s3 \
29+
--no-checksum-verify \ # needed for HBase 2.6.1 until this is fixed: https://issues.apache.org/jira/browse/HBASE-28998
2830
--snapshot snap \
2931
--copy-from s3a://hbase/snap \
3032
--copy-to hdfs://test-hdfs/hbase \

tests/test-definition.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22
dimensions:
33
- name: hbase
44
values:
5-
- 2.6.0
65
- 2.4.18
6+
- 2.6.1
77
# To use a custom image, add a comma and the full name after the product version
8-
# - 2.6.0,oci.stackable.tech/sandbox/hbase:2.6.0-stackable0.0.0-dev
8+
# - 2.6.1,oci.stackable.tech/sandbox/hbase:2.6.1-stackable0.0.0-dev
99
# - 2.4.18,oci.stackable.tech/sandbox/hbase:2.4.18-stackable0.0.0-dev
1010
- name: hbase-opa
1111
values:
12-
- 2.6.0
12+
- 2.6.1
1313
# To use a custom image, add a comma and the full name after the product version
14-
# - 2.6.0,oci.stackable.tech/sandbox/hbase:2.6.0-stackable0.0.0-dev
14+
# - 2.6.1,oci.stackable.tech/sandbox/hbase:2.6.1-stackable0.0.0-dev
1515
- name: hbase-latest
1616
values:
17-
- 2.6.0
17+
- 2.6.1
1818
# - 2.4.18,oci.stackable.tech/sandbox/hbase:2.4.18-stackable0.0.0-dev
1919
- name: hdfs
2020
values:

0 commit comments

Comments
 (0)