Skip to content

Commit 63b9bb8

Browse files
dervoetirazvan
andauthored
chore: support for hbase 2.6.1 (#627)
* chore: support for hbase 2.6.1 * cannot have comments in multiline commands --------- Co-authored-by: Razvan-Daniel Mihai <84674+razvan@users.noreply.github.com>
1 parent 47d6a21 commit 63b9bb8

File tree

4 files changed

+13
-8
lines changed

4 files changed

+13
-8
lines changed

CHANGELOG.md

+2
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

+2-3
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

+4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ hbase shell create-snapshot.hbase 2>&1 | \
1313
grep '=> \["snap"\]' > /dev/null
1414

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

2628
# Import snapshot from S3
29+
# --no-checksum-verify is needed for HBase 2.6.1 until this is fixed: https://issues.apache.org/jira/browse/HBASE-28998
2730
export-snapshot-to-s3 \
31+
--no-checksum-verify \
2832
--snapshot snap \
2933
--copy-from s3a://hbase/snap \
3034
--copy-to hdfs://test-hdfs/hbase \

tests/test-definition.yaml

+5-5
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)