2.6.7RC1

  +1 (non-binding)

*    * Signature: ok*

       - 50F1E8BB7C67AB14BDFC0A218597754DD5365CCD

         Andrew Purtell (CODE SIGNING KEY) <[email protected]>

         matches advertised key 0xD5365CCD

    * *Checksum* : *ok*

       - SHA512 0deb440313a51f00…092cd5e4 matched

    * *Rat check* (17.0.19): *ok*

       - mvn clean apache-rat:check -Dhadoop.profile=3.0

    * *Built from source* (17.0.19): *ok*

       - mvn clean install -DskipTests -Dhadoop.profile=3.0

    * *Small tests:* *ok*

       - mvn clean package -P runSmallTests \

             -Dsurefire.rerunFailingTestsCount=3 -Dhadoop.profile=3.0

       - 1775 tests run, 0 Failures, 2 Errors, 6 Skipped, 1 Flake (rerun OK)

       - The 2 errors are from a single test class:


org.apache.hadoop.hbase.security.TestMutualTlsClientSideNonLocalhost

           (Seems to be env issue - mutual-TLS host/name verification
against a

            non-localhost address fails on this machine; same class flagged
on

            prior RCs)

    * *Clean-room Docker build* (build-hbase.sh --tarball): ok

       - Built the -src tarball in an isolated linux/amd64 container

         (JDK8 + Maven 3.8.6, deps direct from Maven Central):

         mvn -T1C clean install -DskipTests assembly:single

       - Image built; `hbase version` on the assembly reports HBase 2.6.7



*  Started a standalone cluster* - *OK*

    Ran below commands from HBase shell and verified logs



    list

    create 'vo_test', 'f1'

    list 'vo_test'

    put 'vo_test', 'r1', 'f1:q1', 'RC1_is_good'

    flush 'vo_test'

    put 'vo_test', 'r2', 'f1:q2', 'RC1_is_still_good'

    flush 'vo_test'

    major_compact 'vo_test'

    get_splits 'vo_test'

    split 'vo_test', 'r1'

    get_splits 'vo_test'



       Master log shows CreateTableProcedure SUCCESS, major compaction

       completed (fileCount=2 -> merged), SplitTableRegionProcedure SUCCESS

       for vo_test.



*    Executions from hbase PE tool - OK*



    ./bin/hbase pe --table=table_name --rows=10000 sequentialWrite 10

       row count 100,000, elapsed 378 ms

    ./bin/hbase pe --table=table_name --rows=1000  scan 10

       row count 10,000,  elapsed 101 ms

    ./bin/hbase pe --table=table_name --rows=1000  sequentialRead 10

       row count 10,000,  elapsed 305 ms






Thanks

Prathyusha

On Tue, Aug 18, 2026 at 12:44 AM Dávid Paksy <[email protected]> wrote:

> +1 (non-binding)
> I checked:
>
>         * Signature: ok
>         * Checksum : ok
>         * Rat check (17.0.18): ok
>          - mvn clean apache-rat:check -D skipTests -D hadoop.profile=3.0
>         * Built from source (17.0.18): ok
>          - mvn clean install -D skipTests -D hadoop.profile=3.0 -DskipTests
>
>
>
> Started a standalone cluster - OK
> Checked logs and web UI pages, looks good.
>
> Run these shell commands - OK
>
> create_namespace 'nj'
> create 'nj:test', 'cf', {NUMREGIONS => 3, SPLITALGO => 'HexStringSplit'}
> describe 'nj:test'
> put 'nj:test', 'r1', 'cf:1', 'v1'
> put 'nj:test', '1', 'cf:1', 'v1'
> put 'nj:test', 'z00', 'cf:1', 'v3'
> scan 'nj:test'
> get 'nj:test', 'r1'
> flush 'nj:test'
> major_compact 'nj:test'
> get_splits 'nj:test'
> split 'nj:test', '0'
> get_splits 'nj:test'
>
> Executed LoadTestTool - OK
> bin/hbase ltt -num_keys 10000 -write 100:100 -num_tables 10 -multiput
>
> Also started REST and Thrift Servers and checked the web UI - OK
>
>
> Peter Somogyi <[email protected]> ezt írta (időpont: 2026. aug. 17., H,
> 15:41):
>
> > +1 (binding)
> >
> >         * Signature: ok
> >         * Checksum : ok
> >         * Rat check (17.0.20): ok
> >          - mvn clean apache-rat:check -D hadoop.profile=3.0
> >         * Built from source (17.0.20): ok
> >          - mvn clean install -D hadoop.profile=3.0 -DskipTests
> >         * Unit tests pass (17.0.20): ok
> >          - mvn clean package -P runDevTests -D hadoop.profile=3.0
> > -Dsurefire.rerunFailingTestsCount=3
> >
> > On Mon, Aug 17, 2026 at 8:04 AM Xiao Liu <[email protected]> wrote:
> >
> > > +1 (non-binding)
> > > I checked:
> > >
> > > * Signature: OK
> > > * Checksum: OK
> > > * LICENSE and NOTICE: In place
> > > * Rat check (17.0.12): OK
> > >   - mvn clean apache-rat:check
> > > * Build from source (17.0.12): OK
> > >   - mvn clean install -DskipTests -Dhadoop.profile=3.0
> > >
> > >
> > > Start a mini cluster in standalone mode, succeeded.
> > > Check logs and web pages, it looks good.
> > >
> > > Run these shell commands, looks fine.
> > > create 'test', 'cf'
> > > list 'test'
> > > describe 'test'
> > > put 'test', 'row1', 'cf:a', 'value1'
> > > put 'test', 'row2', 'cf:b', 'value2'
> > > put 'test', 'row3', 'cf:c', 'value3'
> > > scan 'test'
> > > get 'test', 'row1'
> > > flush 'test'
> > > major_compact 'test'
> > > scan 'test'
> > > disable 'test'
> > > enable 'test'
> > > disable 'test'
> > > drop 'test'
> > >
> > >
> > > Run LTT to load 10000 rows, Passed
> > > ./bin/hbase ltt -write 20:1024 -num_keys 10000
> > >
> > > Run these shell commands, looks fine
> > > flush 'cluster_test'
> > > major_compact 'cluster_test'
> > > scan 'cluster_test', {LIMIT=>10}
> > > count 'cluster_test'
> > >
> > >
> > > On 2026/08/17 04:43:01 Junegunn Choi wrote:
> > > > +1 (non-binding)
> > > >
> > > > * Signature: ok
> > > > * Checksum : ok
> > > > * Rat check (17.0.2): ok
> > > >  - mvn clean apache-rat:check -D hadoop.profile=3.0
> > > > * Built from source (17.0.2): ok
> > > >  - mvn clean install -D hadoop.profile=3.0 -DskipTests
> > > > * Unit tests pass (17.0.2), small tests only: failed (2 known/env
> > > failures)
> > > >  - mvn clean package -P runSmallTests -D hadoop.profile=3.0
> > > > -Dsurefire.rerunFailingTestsCount=3
> > > >
> > > > * RELEASENOTES.md: ok, 4 entries (HBASE-30300, HBASE-30195,
> > > > HBASE-29289, HBASE-30200)
> > > > * API compatibility report: ok, 100%, 0 problems
> > > > * CHANGES.md: +0
> > > >  - HBASE-29912 is missing from CHANGELOG because it's RESOLVED, not
> > > FIXED.
> > > >    (
> > >
> >
> https://github.com/apache/yetus/blob/rel/0.14.1/releasedocmaker/src/main/python/releasedocmaker/jira.py#L211
> > > )
> > > >
> > > > Standalone cluster from the hadoop3 binary tarball:
> > > > * Master and RS web UI: ok
> > > > * Shell CRUD, flush, major_compact, snapshot, clone, drop: ok
> > > > * LTT with 1M rows: ok, count returned 1000000
> > > >
> > >
> >
>

Reply via email to