QCLyu commented on PR #11351: URL: https://github.com/apache/incubator-gluten/pull/11351#issuecomment-3713558774
Hi @zhouyuan , the code changes here look good. The only ClickHouse CI failure is due to the Jenkins job still running -Pspark-3.2 on Java 8, but this repo no longer has a spark-3.2 profile and pulls Iceberg artifacts built for Java 11 (class version 55). That mismatch causes the compile error in gluten-iceberg. This is a CI config issue, not a code regression. Please proceed with merge if everything else looks good to you, and we can update/disable the Spark 3.2 Java 8 leg in the Jenkins pipeline separately. This is the only failed step in ClickHouse CI: https://opencicd.kyligence.com/job/gluten/job/gluten-ci/18337/flowGraphTable/ This is the log: https://opencicd.kyligence.com/job/gluten/job/gluten-ci/18337/execution/node/235/log/ ```text 18:00:32 [ERROR] COMPILATION ERROR : 18:00:32 [INFO] ------------------------------------------------------------- 18:00:32 [ERROR] /home/jenkins/agent/workspace/gluten/gluten-ci/ut-stage-1/gluten-iceberg/src/main/java/org/apache/gluten/connector/write/MetricsWrapper.java:[21,25] error: cannot access Metrics 18:00:32 bad class file: /root/.m2/repository/org/apache/iceberg/iceberg-spark-runtime-3.5_2.12/1.10.0/iceberg-spark-runtime-3.5_2.12-1.10.0.jar(org/apache/iceberg/Metrics.class) 18:00:32 class file has wrong version 55.0, should be 52.0 18:00:32 Please remove or make sure it appears in the correct subdirectory of the classpath. 18:00:32 [INFO] 1 error 18:00:32 [INFO] ------------------------------------------------------------- 18:00:32 [INFO] ------------------------------------------------------------------------ 18:00:32 [INFO] Reactor Summary for Gluten Parent Pom 1.6.0-SNAPSHOT: 18:00:32 [INFO] 18:00:32 [INFO] Gluten Parent Pom .................................. SUCCESS [ 21.426 s] 18:00:32 [INFO] Gluten Ras ......................................... SUCCESS [ 22.345 s] 18:00:32 [INFO] Gluten Ras Common .................................. SUCCESS [ 51.109 s] 18:00:32 [INFO] Gluten Core ........................................ SUCCESS [ 39.051 s] 18:00:32 [INFO] Gluten Shims ....................................... SUCCESS [ 0.336 s] 18:00:32 [INFO] Gluten Shims Common ................................ SUCCESS [ 6.173 s] 18:00:32 [INFO] Gluten Shims for Spark 3.5 ......................... SUCCESS [ 12.425 s] 18:00:32 [INFO] Gluten UI .......................................... SUCCESS [ 5.105 s] 18:00:32 [INFO] Gluten Substrait ................................... SUCCESS [01:01 min] 18:00:32 [INFO] Gluten Celeborn .................................... SUCCESS [ 4.345 s] 18:00:32 [INFO] Gluten Iceberg ..................................... FAILURE [ 5.848 s] 18:00:32 [INFO] Gluten DeltaLake ................................... SKIPPED 18:00:32 [INFO] Gluten Package ..................................... SKIPPED 18:00:32 [INFO] Gluten Ras Planner ................................. SKIPPED 18:00:32 [INFO] Gluten Kafka ....................................... SKIPPED 18:00:32 [INFO] Gluten Backends ClickHouse ......................... SKIPPED 18:00:32 [INFO] Gluten Unit Test Parent ............................ SKIPPED 18:00:32 [INFO] Gluten Unit Test Common ............................ SKIPPED 18:00:32 [INFO] Gluten Unit Test ................................... SKIPPED 18:00:32 [INFO] ------------------------------------------------------------------------ 18:00:32 [INFO] BUILD FAILURE 18:00:32 [INFO] ------------------------------------------------------------------------ 18:00:32 [INFO] Total time: 03:49 min 18:00:32 [INFO] Finished at: 2026-01-06T02:00:32Z 18:00:32 [INFO] ------------------------------------------------------------------------ 18:00:32 [WARNING] The requested profile "spark-3.2" could not be activated because it does not exist. 18:00:32 [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.14.1:compile (default-compile) on project gluten-iceberg: Compilation failure 18:00:32 [ERROR] /home/jenkins/agent/workspace/gluten/gluten-ci/ut-stage-1/gluten-iceberg/src/main/java/org/apache/gluten/connector/write/MetricsWrapper.java:[21,25] error: cannot access Metrics 18:00:32 [ERROR] bad class file: /root/.m2/repository/org/apache/iceberg/iceberg-spark-runtime-3.5_2.12/1.10.0/iceberg-spark-runtime-3.5_2.12-1.10.0.jar(org/apache/iceberg/Metrics.class) 18:00:32 [ERROR] class file has wrong version 55.0, should be 52.0 18:00:32 [ERROR] Please remove or make sure it appears in the correct subdirectory of the classpath. 18:00:32 [ERROR] 18:00:32 [ERROR] -> [Help 1] -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
