arvindKandpal-ksolves commented on PR #8656:
URL: https://github.com/apache/hbase/pull/8656#issuecomment-5710123926

   Verified locally on branch-2.5, JDK 11.0.32, Hadoop3 profile 
(-Dhadoop.profile=3.0), matching "Yetus JDK11 Hadoop3 Unit Check / medium".
   
   TestWALCompressionLzma passes. TestBufferedMutator#testMultiThread and 
TestBasicWALEntryStreamFSHLog#testCleanClosedWALs fail — confirmed pre-existing 
by reverting pom.xml to pristine zstd-jni 1.5.7-2 and reproducing the same 
failures.
   
   With zstd-jni 1.5.7-15:
   
   ```code 
   arvindksi274@KLP2757:~/Opensource-works/hbase$ mvn -Dhadoop.profile=3.0 -pl 
hbase-server -am clean install -DskipTests 2>&1 | tail -10
   [INFO] Apache HBase - HTTP ................................ SUCCESS [  4.903 
s]
   [INFO] Apache HBase - Asynchronous FileSystem ............. SUCCESS [  4.376 
s]
   [INFO] Apache HBase - Procedure ........................... SUCCESS [  3.387 
s]
   [INFO] Apache HBase - Server .............................. SUCCESS [ 55.751 
s]
   [INFO] 
------------------------------------------------------------------------
   [INFO] BUILD SUCCESS
   [INFO] 
------------------------------------------------------------------------
   [INFO] Total time:  02:39 min
   [INFO] Finished at: 2026-09-17T11:22:19+05:30
   [INFO] 
------------------------------------------------------------------------
   
   arvindksi274@KLP2757:~/Opensource-works/hbase$ mvn -Dhadoop.profile=3.0 -pl 
hbase-server test 
-Dtest=TestBasicWALEntryStreamAsyncFSWAL#testCleanClosedWALs,TestBasicWALEntryStreamFSHLog#testCleanClosedWALs,TestBufferedMutator#testMultiThread
 -DfailIfNoTests=false 2>&1 | grep -E "Tests run|FAIL|ERROR|BUILD"
   [ERROR] Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 
14.00 s <<< FAILURE! -- in 
org.apache.hadoop.hbase.replication.regionserver.TestBasicWALEntryStreamFSHLog
   [ERROR] 
org.apache.hadoop.hbase.replication.regionserver.TestBasicWALEntryStreamFSHLog.testCleanClosedWALs
 -- Time elapsed: 4.545 s <<< FAILURE!
   [ERROR] Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 
14.24 s <<< FAILURE! -- in 
org.apache.hadoop.hbase.replication.regionserver.TestBasicWALEntryStreamAsyncFSWAL
   [ERROR] 
org.apache.hadoop.hbase.replication.regionserver.TestBasicWALEntryStreamAsyncFSWAL.testCleanClosedWALs
 -- Time elapsed: 4.676 s <<< FAILURE!
   [INFO] Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 46.35 
s -- in org.apache.hadoop.hbase.client.TestBufferedMutator
   [ERROR] Failures: 
   [ERROR]   
TestBasicWALEntryStreamAsyncFSWAL>TestBasicWALEntryStream.testCleanClosedWALs:727
 expected: <0> but was: <1>
   [ERROR]   
TestBasicWALEntryStreamFSHLog>TestBasicWALEntryStream.testCleanClosedWALs:727 
expected: <0> but was: <1>
   [ERROR] Tests run: 3, Failures: 2, Errors: 0, Skipped: 0
   [INFO] BUILD FAILURE
   [ERROR] Failed to execute goal 
org.apache.maven.plugins:maven-surefire-plugin:3.5.3:test (default-test) on 
project hbase-server: There are test failures.
   [ERROR] 
   [ERROR] See 
/home/arvindksi274/Opensource-works/hbase/hbase-server/target/surefire-reports 
for the individual test results.
   [ERROR] See dump files (if any exist) [date].dump, [date]-jvmRun[N].dump and 
[date].dumpstream.
   [ERROR] -> [Help 1]
   [ERROR] 
   [ERROR] To see the full stack trace of the errors, re-run Maven with the -e 
switch.
   [ERROR] Re-run Maven using the -X switch to enable full debug logging.
   [ERROR] 
   [ERROR] For more information about the errors and possible solutions, please 
read the following articles:
   [ERROR] [Help 1] 
http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
   
   arvindksi274@KLP2757:~/Opensource-works/hbase$ export 
JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64
   export PATH=$JAVA_HOME/bin:$PATH
   java -version
   grep -rn "zstd" hbase-compression/hbase-compression-xz/pom.xml
   openjdk version "11.0.32" 2026-07-21
   OpenJDK Runtime Environment (build 11.0.32+9-post-1ubuntu1-24.04-Ubuntu)
   OpenJDK 64-Bit Server VM (build 11.0.32+9-post-1ubuntu1-24.04-Ubuntu, mixed 
mode, sharing)
   
   arvindksi274@KLP2757:~/Opensource-works/hbase$ mvn -Dhadoop.profile=3.0 -pl 
hbase-compression/hbase-compression-xz -am clean install -DskipTests 2>&1 | 
tail -10
   [INFO] Apache HBase - Server .............................. SUCCESS [ 54.323 
s]
   [INFO] Apache HBase - Testing Util ........................ SUCCESS [  6.245 
s]
   [INFO] Apache HBase - Compression ......................... SUCCESS [  0.068 
s]
   [INFO] Apache HBase - Compression - XZ .................... SUCCESS [  4.457 
s]
   [INFO] 
------------------------------------------------------------------------
   [INFO] BUILD SUCCESS
   [INFO] 
------------------------------------------------------------------------
   [INFO] Total time:  03:08 min
   [INFO] Finished at: 2026-09-17T11:42:24+05:30
   [INFO] 
------------------------------------------------------------------------
   
   arvindksi274@KLP2757:~/Opensource-works/hbase$ mvn -Dhadoop.profile=3.0 -pl 
hbase-compression/hbase-compression-xz test -Dtest=TestWALCompressionLzma 
-DfailIfNoTests=false 2>&1 | grep -E "Tests run|FAIL|ERROR|BUILD"
   [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 174.8 
s -- in org.apache.hadoop.hbase.io.compress.xz.TestWALCompressionLzma
   [INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0
   [INFO] BUILD SUCCESS
   arvindksi274@KLP2757:~/Opensource-works/hbase$ mvn -Dhadoop.profile=3.0 -pl 
hbase-server -am clean install -DskipTests 2>&1 | tail -5
   [INFO] BUILD SUCCESS
   [INFO] 
------------------------------------------------------------------------
   [INFO] Total time:  02:47 min
   [INFO] Finished at: 2026-09-17T11:50:40+05:30
   [INFO] 
------------------------------------------------------------------------
   
   arvindksi274@KLP2757:~/Opensource-works/hbase$ mvn -Dhadoop.profile=3.0 -pl 
hbase-server test 
-Dtest=TestBufferedMutator#testMultiThread,TestBasicWALEntryStreamFSHLog#testCleanClosedWALs
 -DfailIfNoTests=false 2>&1 | grep -E "Tests run|FAIL|ERROR|BUILD"
   [ERROR] Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 
13.78 s <<< FAILURE! -- in 
org.apache.hadoop.hbase.replication.regionserver.TestBasicWALEntryStreamFSHLog
   [ERROR] 
org.apache.hadoop.hbase.replication.regionserver.TestBasicWALEntryStreamFSHLog.testCleanClosedWALs
 -- Time elapsed: 4.803 s <<< FAILURE!
   [ERROR] Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 
39.56 s <<< FAILURE! -- in org.apache.hadoop.hbase.client.TestBufferedMutator
   [ERROR] org.apache.hadoop.hbase.client.TestBufferedMutator.testMultiThread 
-- Time elapsed: 19.05 s <<< FAILURE!
   [ERROR] Failures: 
   [ERROR]   TestBufferedMutator.testMultiThread:125 expected: <true> but was: 
<false>
   [ERROR]   
TestBasicWALEntryStreamFSHLog>TestBasicWALEntryStream.testCleanClosedWALs:727 
expected: <0> but was: <1>
   [ERROR] Tests run: 2, Failures: 2, Errors: 0, Skipped: 0
   [INFO] BUILD FAILURE
   [ERROR] Failed to execute goal 
org.apache.maven.plugins:maven-surefire-plugin:3.5.3:test (default-test) on 
project hbase-server: There are test failures.
   [ERROR] 
   [ERROR] See 
/home/arvindksi274/Opensource-works/hbase/hbase-server/target/surefire-reports 
for the individual test results.
   [ERROR] See dump files (if any exist) [date].dump, [date]-jvmRun[N].dump and 
[date].dumpstream.
   [ERROR] -> [Help 1]
   [ERROR] 
   [ERROR] To see the full stack trace of the errors, re-run Maven with the -e 
switch.
   [ERROR] Re-run Maven using the -X switch to enable full debug logging.
   [ERROR] 
   [ERROR] For more information about the errors and possible solutions, please 
read the following articles:
   [ERROR] [Help 1] 
http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
   ```
   
   With zstd-jni 1.5.7-2 (pristine):
   
   ```code
   arvindksi274@KLP2757:~/Opensource-works/hbase$ git checkout 
upstream/branch-2.5 -- pom.xml
   grep -n "zstd-jni.version" pom.xml
   mvn -Dhadoop.profile=3.0 -pl hbase-server -am clean install -DskipTests 2>&1 
| tail -5
   mvn -Dhadoop.profile=3.0 -pl hbase-server test 
-Dtest=TestBufferedMutator#testMultiThread -DfailIfNoTests=false 2>&1 | grep -E 
"Tests run|FAIL|ERROR|BUILD"
   674:    <zstd-jni.version>1.5.7-2</zstd-jni.version>
   1540:        <version>${zstd-jni.version}</version>
   [INFO] BUILD SUCCESS
   [INFO] 
------------------------------------------------------------------------
   [INFO] Total time:  03:18 min
   [INFO] Finished at: 2026-09-17T11:57:00+05:30
   [INFO] 
------------------------------------------------------------------------
   [ERROR] Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 
38.80 s <<< FAILURE! -- in org.apache.hadoop.hbase.client.TestBufferedMutator
   [ERROR] org.apache.hadoop.hbase.client.TestBufferedMutator.testMultiThread 
-- Time elapsed: 20.04 s <<< FAILURE!
   [ERROR] Failures: 
   [ERROR]   TestBufferedMutator.testMultiThread:125 expected: <true> but was: 
<false>
   [ERROR] Tests run: 1, Failures: 1, Errors: 0, Skipped: 0
   [INFO] BUILD FAILURE
   [ERROR] Failed to execute goal 
org.apache.maven.plugins:maven-surefire-plugin:3.5.3:test (default-test) on 
project hbase-server: There are test failures.
   [ERROR] 
   [ERROR] See 
/home/arvindksi274/Opensource-works/hbase/hbase-server/target/surefire-reports 
for the individual test results.
   [ERROR] See dump files (if any exist) [date].dump, [date]-jvmRun[N].dump and 
[date].dumpstream.
   [ERROR] -> [Help 1]
   [ERROR] 
   [ERROR] To see the full stack trace of the errors, re-run Maven with the -e 
switch.
   [ERROR] Re-run Maven using the -X switch to enable full debug logging.
   [ERROR] 
   [ERROR] For more information about the errors and possible solutions, please 
read the following articles:
   [ERROR] [Help 1] 
http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
   ```
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to