Skip to content

Commit fa37db0

Browse files
adwk67maltesander
andauthored
chore(hbase): Add HBase 2.6.3 (#1296)
* hbase 2.6.3 built against hadoop 3.4.1 * bumped to 2.6.3, referencing hadoop 3.4.2 * updated README * changelog * updated changelog * Update hbase/README.md Co-authored-by: Malte Sander <malte.sander.it@gmail.com> --------- Co-authored-by: Malte Sander <malte.sander.it@gmail.com>
1 parent a9fea67 commit fa37db0

13 files changed

+1096
-48
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ All notable changes to this project will be documented in this file.
2828
- hadoop: Add `3.4.2` ([#1291]).
2929
- zookeeper: Add `3.9.4` ([#1292]).
3030
- nifi: Add `2.6.0` ([#1293]).
31+
- hbase: Add `2.6.3` ([#1296]).
3132

3233
### Changed
3334

@@ -55,6 +56,7 @@ All notable changes to this project will be documented in this file.
5556
- spark: Remove `4.0.0` ([#1286]).
5657
- spark-connect-client: Remove `4.0.0` ([#1286]).
5758
- trino/trino-storage-conector: Remove `470` ([#1285]).
59+
- hbase: Remove `2.6.1` ([#1296]).
5860

5961
[#1207]: https://github.com/stackabletech/docker-images/pull/1207
6062
[#1215]: https://github.com/stackabletech/docker-images/pull/1215
@@ -84,6 +86,7 @@ All notable changes to this project will be documented in this file.
8486
[#1291]: https://github.com/stackabletech/docker-images/pull/1291
8587
[#1292]: https://github.com/stackabletech/docker-images/pull/1292
8688
[#1293]: https://github.com/stackabletech/docker-images/pull/1293
89+
[#1296]: https://github.com/stackabletech/docker-images/pull/1296
8790

8891
## [25.7.0] - 2025-07-23
8992

hbase/README.md

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Support for HBase 2.6
22

3-
As of SDP 24.7 we do include HBase 2.6 support in an experimental state.
3+
As of SDP release 25.3, HBase 2.6.x is fully supported.
44

55
## Phoenix
66

@@ -11,16 +11,4 @@ SDP 24.7 included Phoenix built from the master branch from commit [4afe457](htt
1111

1212
Repository: [hbase-operator-tools](https://github.com/apache/hbase-operator-tools)
1313

14-
Built from git hash [7c738fc](https://github.com/apache/hbase-operator-tools/tree/7c738fc1bd14fd3e2ca4e66569b496b3fd9d0288) (master)
15-
since no release supporting HBase 2.6 available yet.
16-
17-
```bash
18-
mkdir ../hbase-operator-tools-1.3.0-7c738fc
19-
git archive --format=tar --output ../hbase-operator-tools-1.3.0-7c738fc/hot.tar 7c738fc
20-
cd ../hbase-operator-tools-1.3.0-7c738fc
21-
tar xf hot.tar
22-
rm hot.tar
23-
echo 7c738fc > git-commit
24-
cd ..
25-
tar -c hbase-operator-tools-1.3.0-7c738fc|gzip > hbase-operator-tools-1.3.0-7c738fc-src.tar.gz
26-
```
14+
This is now mirrored and built from source using `patchable`.

hbase/boil-config.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
1-
[versions."2.6.1".local-images]
2-
"hbase/hbase" = "2.6.1"
3-
"hbase/hbase-operator-tools" = "1.3.0-fd5a5fb-hbase2.6.1"
4-
"hbase/phoenix" = "5.2.1-hbase2.6.1"
1+
[versions."2.6.2".local-images]
2+
"hbase/hbase" = "2.6.2"
3+
"hbase/hbase-operator-tools" = "1.3.0-fd5a5fb-hbase2.6.2"
4+
"hbase/phoenix" = "5.2.1-hbase2.6.2"
55
"hbase/hbase-opa-authorizer" = "0.1.0" # only for HBase 2.6.1
6-
"hadoop/hadoop" = "3.3.6"
6+
"hadoop/hadoop" = "3.4.1"
77
java-base = "11"
88
java-devel = "11"
99

10-
[versions."2.6.1".build-arguments]
10+
[versions."2.6.2".build-arguments]
1111
hbase-profile = "2.6"
1212
delete-caches = "true"
1313

14-
[versions."2.6.2".local-images]
15-
"hbase/hbase" = "2.6.2"
16-
"hbase/hbase-operator-tools" = "1.3.0-fd5a5fb-hbase2.6.2"
17-
"hbase/phoenix" = "5.2.1-hbase2.6.2"
14+
[versions."2.6.3".local-images]
15+
"hbase/hbase" = "2.6.3"
16+
"hbase/hbase-operator-tools" = "1.3.0-fd5a5fb-hbase2.6.3"
17+
"hbase/phoenix" = "5.2.1-hbase2.6.3"
1818
"hbase/hbase-opa-authorizer" = "0.1.0" # only for HBase 2.6.1
19-
"hadoop/hadoop" = "3.4.1"
19+
"hadoop/hadoop" = "3.4.2"
2020
java-base = "11"
2121
java-devel = "11"
2222

23-
[versions."2.6.2".build-arguments]
23+
[versions."2.6.3".build-arguments]
2424
hbase-profile = "2.6"
2525
delete-caches = "true"
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
[versions."1.3.0-fd5a5fb-hbase2.6.1".local-images]
2-
"hadoop/hadoop" = "3.3.6"
3-
"hbase/hbase" = "2.6.1"
1+
[versions."1.3.0-fd5a5fb-hbase2.6.2".local-images]
2+
"hadoop/hadoop" = "3.4.1"
3+
"hbase/hbase" = "2.6.2"
44
"java-devel" = "11"
55

6-
[versions."1.3.0-fd5a5fb-hbase2.6.1".build-arguments]
6+
[versions."1.3.0-fd5a5fb-hbase2.6.2".build-arguments]
77
hbase-operator-tools-version = "1.3.0-fd5a5fb"
88
hbase-thirdparty-version = "4.1.9"
99
delete-caches = "true"
1010

11-
[versions."1.3.0-fd5a5fb-hbase2.6.2".local-images]
12-
"hadoop/hadoop" = "3.4.1"
13-
"hbase/hbase" = "2.6.2"
11+
[versions."1.3.0-fd5a5fb-hbase2.6.3".local-images]
12+
"hadoop/hadoop" = "3.4.2"
13+
"hbase/hbase" = "2.6.3"
1414
"java-devel" = "11"
1515

16-
[versions."1.3.0-fd5a5fb-hbase2.6.2".build-arguments]
16+
[versions."1.3.0-fd5a5fb-hbase2.6.3".build-arguments]
1717
hbase-operator-tools-version = "1.3.0-fd5a5fb"
1818
hbase-thirdparty-version = "4.1.9"
1919
delete-caches = "true"

hbase/hbase/boil-config.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
[versions."2.6.1".local-images]
2-
"hadoop/hadoop" = "3.3.6"
1+
[versions."2.6.2".local-images]
2+
"hadoop/hadoop" = "3.4.1"
33
java-base = "11"
44
java-devel = "11"
55

6-
[versions."2.6.1".build-arguments]
6+
[versions."2.6.2".build-arguments]
77
async-profiler-version = "2.9"
88
delete-caches = "true"
99

10-
[versions."2.6.2".local-images]
11-
"hadoop/hadoop" = "3.4.1"
10+
[versions."2.6.3".local-images]
11+
"hadoop/hadoop" = "3.4.2"
1212
java-base = "11"
1313
java-devel = "11"
1414

15-
[versions."2.6.2".build-arguments]
15+
[versions."2.6.3".build-arguments]
1616
async-profiler-version = "2.9"
1717
delete-caches = "true"

0 commit comments

Comments
 (0)