From 780749a09ff9b4fef0cb256529cd0d340d462dd9 Mon Sep 17 00:00:00 2001 From: Mariam-Almesfer Date: Thu, 26 Feb 2026 05:21:52 +0300 Subject: [PATCH] Add validation test for localtimestamp --- .../ScalarFunctionsValidateSuite.scala | 23 + .../columnar/validator/Validators.scala | 22 + job-logs.txt | 1930 +++++++++++++++++ 3 files changed, 1975 insertions(+) create mode 100644 job-logs.txt diff --git a/backends-velox/src/test/scala/org/apache/gluten/functions/ScalarFunctionsValidateSuite.scala b/backends-velox/src/test/scala/org/apache/gluten/functions/ScalarFunctionsValidateSuite.scala index 302b4aa603d3..b12f6156386b 100644 --- a/backends-velox/src/test/scala/org/apache/gluten/functions/ScalarFunctionsValidateSuite.scala +++ b/backends-velox/src/test/scala/org/apache/gluten/functions/ScalarFunctionsValidateSuite.scala @@ -1521,4 +1521,27 @@ abstract class ScalarFunctionsValidateSuite extends FunctionsValidateSuite { } } } + test("test_current_timestamp") { + val df = spark.sql("SELECT l_orderkey, current_timestamp() from lineitem limit 1") + val optimizedPlan = df.queryExecution.optimizedPlan.toString() + assert( + !optimizedPlan.contains("CurrentTimestamp"), + s"Expected CurrentTimestamp to be folded to a literal, but got: $optimizedPlan" + ) + checkGlutenPlan[ProjectExecTransformer](df) + checkFallbackOperators(df, 0) + df.collect() + } + + test("test_now") { + val df = spark.sql("SELECT l_orderkey, now() from lineitem limit 1") + val optimizedPlan = df.queryExecution.optimizedPlan.toString() + assert( + !optimizedPlan.contains("Now"), + s"Expected Now to be folded to a literal, but got: $optimizedPlan" + ) + checkGlutenPlan[ProjectExecTransformer](df) + checkFallbackOperators(df, 0) + df.collect() + } } diff --git a/gluten-substrait/src/main/scala/org/apache/gluten/extension/columnar/validator/Validators.scala b/gluten-substrait/src/main/scala/org/apache/gluten/extension/columnar/validator/Validators.scala index b20663093f75..39400105ee16 100644 --- a/gluten-substrait/src/main/scala/org/apache/gluten/extension/columnar/validator/Validators.scala +++ b/gluten-substrait/src/main/scala/org/apache/gluten/extension/columnar/validator/Validators.scala @@ -220,6 +220,28 @@ object Validators { private class FallbackByTimestampNTZ() extends Validator { override def validate(plan: SparkPlan): Validator.OutCome = { + // Check if TimestampNTZ validation is enabled via VeloxConfig + // Use reflection to avoid compile-time dependency on backends-velox module + val enableValidation = + try { + // scalastyle:off classforname + val veloxConfigClass = Class.forName("org.apache.gluten.config.VeloxConfig") + // scalastyle:on classforname + val getMethod = veloxConfigClass.getMethod("get") + val configInstance = getMethod.invoke(null) + val enableMethod = veloxConfigClass.getMethod("enableTimestampNtzValidation") + enableMethod.invoke(configInstance).asInstanceOf[Boolean] + } catch { + case _: Exception => + // If VeloxConfig is not available (e.g., non-Velox backend), default to enabled + true + } + + if (!enableValidation) { + // Validation is disabled, allow TimestampNTZ + return pass() + } + def containsNTZ(dataType: DataType): Boolean = dataType match { case dt if dt.catalogString == "timestamp_ntz" => true case st: StructType => st.exists(f => containsNTZ(f.dataType)) diff --git a/job-logs.txt b/job-logs.txt new file mode 100644 index 000000000000..3ef7bb576c92 --- /dev/null +++ b/job-logs.txt @@ -0,0 +1,1930 @@ +2026-03-12T12:30:32.5688980Z Current runner version: '2.332.0' +2026-03-12T12:30:32.5724270Z ##[group]Runner Image Provisioner +2026-03-12T12:30:32.5725547Z Hosted Compute Agent +2026-03-12T12:30:32.5726506Z Version: 20260213.493 +2026-03-12T12:30:32.5727645Z Commit: 5c115507f6dd24b8de37d8bbe0bb4509d0cc0fa3 +2026-03-12T12:30:32.5728833Z Build Date: 2026-02-13T00:28:41Z +2026-03-12T12:30:32.5730024Z Worker ID: {24e3e7d7-43db-4aae-98d6-edc0e70dc92b} +2026-03-12T12:30:32.5731579Z Azure Region: centralus +2026-03-12T12:30:32.5732726Z ##[endgroup] +2026-03-12T12:30:32.5734883Z ##[group]Operating System +2026-03-12T12:30:32.5736038Z Ubuntu +2026-03-12T12:30:32.5736938Z 22.04.5 +2026-03-12T12:30:32.5737828Z LTS +2026-03-12T12:30:32.5738782Z ##[endgroup] +2026-03-12T12:30:32.5739688Z ##[group]Runner Image +2026-03-12T12:30:32.5740681Z Image: ubuntu-22.04 +2026-03-12T12:30:32.5741813Z Version: 20260302.50.1 +2026-03-12T12:30:32.5744102Z Included Software: https://github.com/actions/runner-images/blob/ubuntu22/20260302.50/images/ubuntu/Ubuntu2204-Readme.md +2026-03-12T12:30:32.5746830Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu22%2F20260302.50 +2026-03-12T12:30:32.5748650Z ##[endgroup] +2026-03-12T12:30:32.5753277Z ##[group]GITHUB_TOKEN Permissions +2026-03-12T12:30:32.5756080Z Actions: read +2026-03-12T12:30:32.5756680Z ArtifactMetadata: read +2026-03-12T12:30:32.5757278Z Attestations: read +2026-03-12T12:30:32.5757937Z Checks: read +2026-03-12T12:30:32.5758478Z Contents: read +2026-03-12T12:30:32.5758992Z Deployments: read +2026-03-12T12:30:32.5759623Z Discussions: read +2026-03-12T12:30:32.5760136Z Issues: read +2026-03-12T12:30:32.5760689Z Metadata: read +2026-03-12T12:30:32.5761573Z Models: read +2026-03-12T12:30:32.5762152Z Packages: read +2026-03-12T12:30:32.5762745Z Pages: read +2026-03-12T12:30:32.5763423Z PullRequests: read +2026-03-12T12:30:32.5764055Z RepositoryProjects: read +2026-03-12T12:30:32.5764657Z SecurityEvents: read +2026-03-12T12:30:32.5765295Z Statuses: read +2026-03-12T12:30:32.5765866Z ##[endgroup] +2026-03-12T12:30:32.5768436Z Secret source: None +2026-03-12T12:30:32.5769483Z Prepare workflow directory +2026-03-12T12:30:32.6472495Z Prepare all required actions +2026-03-12T12:30:32.6528628Z Getting action download info +2026-03-12T12:30:33.0024900Z Download action repository 'actions/checkout@v4' (SHA:34e114876b0b11c390a56381ad16ebd13914f8d5) +2026-03-12T12:30:33.1609182Z Download action repository 'actions/download-artifact@v4' (SHA:d3f86a106a0bac45b974a628896c90dbdf5c8093) +2026-03-12T12:30:33.7744724Z Complete job name: tpc-test-centos7 (spark-3.5, java-8) +2026-03-12T12:30:33.8379372Z ##[group]Run actions/checkout@v4 +2026-03-12T12:30:33.8380251Z with: +2026-03-12T12:30:33.8380645Z repository: apache/gluten +2026-03-12T12:30:33.8381494Z token: *** +2026-03-12T12:30:33.8381930Z ssh-strict: true +2026-03-12T12:30:33.8382319Z ssh-user: git +2026-03-12T12:30:33.8382739Z persist-credentials: true +2026-03-12T12:30:33.8383171Z clean: true +2026-03-12T12:30:33.8383563Z sparse-checkout-cone-mode: true +2026-03-12T12:30:33.8384034Z fetch-depth: 1 +2026-03-12T12:30:33.8384433Z fetch-tags: false +2026-03-12T12:30:33.8384826Z show-progress: true +2026-03-12T12:30:33.8385227Z lfs: false +2026-03-12T12:30:33.8385578Z submodules: false +2026-03-12T12:30:33.8385997Z set-safe-directory: true +2026-03-12T12:30:33.8386707Z env: +2026-03-12T12:30:33.8387135Z ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true +2026-03-12T12:30:33.8387691Z MVN_CMD: build/mvn -ntp +2026-03-12T12:30:33.8388117Z WGET_CMD: wget -nv +2026-03-12T12:30:33.8388635Z CCACHE_DIR: /home/runner/work/gluten/gluten/.ccache +2026-03-12T12:30:33.8389196Z SPARK_ANSI_SQL_MODE: false +2026-03-12T12:30:33.8389627Z ##[endgroup] +2026-03-12T12:30:33.9476445Z Syncing repository: apache/gluten +2026-03-12T12:30:33.9478401Z ##[group]Getting Git version info +2026-03-12T12:30:33.9479069Z Working directory is '/home/runner/work/gluten/gluten' +2026-03-12T12:30:33.9479961Z [command]/usr/bin/git version +2026-03-12T12:30:33.9574611Z git version 2.53.0 +2026-03-12T12:30:33.9600894Z ##[endgroup] +2026-03-12T12:30:33.9615079Z Temporarily overriding HOME='/home/runner/work/_temp/394e370f-eedb-4f86-9b77-56092315615c' before making global git config changes +2026-03-12T12:30:33.9616455Z Adding repository directory to the temporary git global config as a safe directory +2026-03-12T12:30:33.9620224Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/gluten/gluten +2026-03-12T12:30:33.9656411Z Deleting the contents of '/home/runner/work/gluten/gluten' +2026-03-12T12:30:33.9659730Z ##[group]Initializing the repository +2026-03-12T12:30:33.9663962Z [command]/usr/bin/git init /home/runner/work/gluten/gluten +2026-03-12T12:30:33.9789892Z hint: Using 'master' as the name for the initial branch. This default branch name +2026-03-12T12:30:33.9791898Z hint: will change to "main" in Git 3.0. To configure the initial branch name +2026-03-12T12:30:33.9793053Z hint: to use in all of your new repositories, which will suppress this warning, +2026-03-12T12:30:33.9794349Z hint: call: +2026-03-12T12:30:33.9795153Z hint: +2026-03-12T12:30:33.9796162Z hint: git config --global init.defaultBranch +2026-03-12T12:30:33.9797440Z hint: +2026-03-12T12:30:33.9798668Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and +2026-03-12T12:30:33.9800739Z hint: 'development'. The just-created branch can be renamed via this command: +2026-03-12T12:30:33.9802452Z hint: +2026-03-12T12:30:33.9803244Z hint: git branch -m +2026-03-12T12:30:33.9804001Z hint: +2026-03-12T12:30:33.9805044Z hint: Disable this message with "git config set advice.defaultBranchName false" +2026-03-12T12:30:33.9806821Z Initialized empty Git repository in /home/runner/work/gluten/gluten/.git/ +2026-03-12T12:30:33.9809585Z [command]/usr/bin/git remote add origin https://github.com/apache/gluten +2026-03-12T12:30:33.9844996Z ##[endgroup] +2026-03-12T12:30:33.9846257Z ##[group]Disabling automatic garbage collection +2026-03-12T12:30:33.9849891Z [command]/usr/bin/git config --local gc.auto 0 +2026-03-12T12:30:33.9878860Z ##[endgroup] +2026-03-12T12:30:33.9880118Z ##[group]Setting up auth +2026-03-12T12:30:33.9886745Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +2026-03-12T12:30:33.9918480Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2026-03-12T12:30:34.0266800Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2026-03-12T12:30:34.0298532Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +2026-03-12T12:30:34.0539400Z [command]/usr/bin/git config --local --name-only --get-regexp ^includeIf\.gitdir: +2026-03-12T12:30:34.0571518Z [command]/usr/bin/git submodule foreach --recursive git config --local --show-origin --name-only --get-regexp remote.origin.url +2026-03-12T12:30:34.0801752Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** +2026-03-12T12:30:34.0836870Z ##[endgroup] +2026-03-12T12:30:34.0837686Z ##[group]Fetching the repository +2026-03-12T12:30:34.0846103Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +04771b8bdcffd4ee5e2b5027a62f50e87be72a97:refs/remotes/pull/11720/merge +2026-03-12T12:30:37.6711556Z From https://github.com/apache/gluten +2026-03-12T12:30:37.6712612Z * [new ref] 04771b8bdcffd4ee5e2b5027a62f50e87be72a97 -> pull/11720/merge +2026-03-12T12:30:37.6745462Z ##[endgroup] +2026-03-12T12:30:37.6746376Z ##[group]Determining the checkout info +2026-03-12T12:30:37.6747914Z ##[endgroup] +2026-03-12T12:30:37.6753816Z [command]/usr/bin/git sparse-checkout disable +2026-03-12T12:30:37.6796024Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig +2026-03-12T12:30:37.6822275Z ##[group]Checking out the ref +2026-03-12T12:30:37.6827061Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/11720/merge +2026-03-12T12:30:38.5450511Z Note: switching to 'refs/remotes/pull/11720/merge'. +2026-03-12T12:30:38.5451495Z +2026-03-12T12:30:38.5451851Z You are in 'detached HEAD' state. You can look around, make experimental +2026-03-12T12:30:38.5452545Z changes and commit them, and you can discard any commits you make in this +2026-03-12T12:30:38.5453230Z state without impacting any branches by switching back to a branch. +2026-03-12T12:30:38.5453626Z +2026-03-12T12:30:38.5453969Z If you want to create a new branch to retain commits you create, you may +2026-03-12T12:30:38.5454593Z do so (now or later) by using -c with the switch command. Example: +2026-03-12T12:30:38.5454937Z +2026-03-12T12:30:38.5455083Z git switch -c +2026-03-12T12:30:38.5455327Z +2026-03-12T12:30:38.5455477Z Or undo this operation with: +2026-03-12T12:30:38.5455707Z +2026-03-12T12:30:38.5455835Z git switch - +2026-03-12T12:30:38.5456123Z +2026-03-12T12:30:38.5456477Z Turn off this advice by setting config variable advice.detachedHead to false +2026-03-12T12:30:38.5456894Z +2026-03-12T12:30:38.5457400Z HEAD is now at 04771b8 Merge 30bac3d9d9dea225720938d1970a36fa9e8c7fc3 into 939067a69836d19be54e6d8447d28aa8c2882d51 +2026-03-12T12:30:38.5487819Z ##[endgroup] +2026-03-12T12:30:38.5526742Z [command]/usr/bin/git log -1 --format=%H +2026-03-12T12:30:38.5549742Z 04771b8bdcffd4ee5e2b5027a62f50e87be72a97 +2026-03-12T12:30:38.5752581Z ##[group]Run actions/download-artifact@v4 +2026-03-12T12:30:38.5752946Z with: +2026-03-12T12:30:38.5753306Z name: velox-native-lib-centos-7-04771b8bdcffd4ee5e2b5027a62f50e87be72a97 +2026-03-12T12:30:38.5753738Z path: ./cpp/build/ +2026-03-12T12:30:38.5753981Z merge-multiple: false +2026-03-12T12:30:38.5754222Z repository: apache/gluten +2026-03-12T12:30:38.5754467Z run-id: 22998832949 +2026-03-12T12:30:38.5754691Z env: +2026-03-12T12:30:38.5754925Z ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true +2026-03-12T12:30:38.5755263Z MVN_CMD: build/mvn -ntp +2026-03-12T12:30:38.5755525Z WGET_CMD: wget -nv +2026-03-12T12:30:38.5755788Z CCACHE_DIR: /home/runner/work/gluten/gluten/.ccache +2026-03-12T12:30:38.5756112Z SPARK_ANSI_SQL_MODE: false +2026-03-12T12:30:38.5756348Z ##[endgroup] +2026-03-12T12:30:38.7861596Z Downloading single artifact +2026-03-12T12:30:38.9489399Z Preparing to download the following artifacts: +2026-03-12T12:30:38.9491102Z - velox-native-lib-centos-7-04771b8bdcffd4ee5e2b5027a62f50e87be72a97 (ID: 5890183057, Size: 74202434, Expected Digest: sha256:cd77f7c2af06d9763ebb44b56ed17c10e6b54c7664c3baf639f2e4503f463a7a) +2026-03-12T12:30:39.0549932Z Redirecting to blob download url: https://productionresultssa1.blob.core.windows.net/actions-results/f51091f2-6988-42d8-a475-7bb08423c360/workflow-job-run-9c9931cd-90fb-5b62-be1b-b121f4abd64c/artifacts/02da18daa72df13c5128619d1a8201348eaee167993429244ceeec07ca43783b.zip +2026-03-12T12:30:39.0552785Z Starting download of artifact to: /home/runner/work/gluten/gluten/cpp/build +2026-03-12T12:30:39.2399559Z (node:1992) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead. +2026-03-12T12:30:39.2401619Z (Use `node --trace-deprecation ...` to show where the warning was created) +2026-03-12T12:30:41.1443610Z SHA256 digest of downloaded artifact is cd77f7c2af06d9763ebb44b56ed17c10e6b54c7664c3baf639f2e4503f463a7a +2026-03-12T12:30:41.1452493Z Artifact download completed successfully. +2026-03-12T12:30:41.1453314Z Total of 1 artifact(s) downloaded +2026-03-12T12:30:41.1453858Z Download artifact has finished successfully +2026-03-12T12:30:41.1719561Z ##[group]Run actions/download-artifact@v4 +2026-03-12T12:30:41.1719871Z with: +2026-03-12T12:30:41.1720171Z name: arrow-jars-centos-7-04771b8bdcffd4ee5e2b5027a62f50e87be72a97 +2026-03-12T12:30:41.1720556Z path: .m2/repository/org/apache/arrow/ +2026-03-12T12:30:41.1720827Z merge-multiple: false +2026-03-12T12:30:41.1721042Z repository: apache/gluten +2026-03-12T12:30:41.1721687Z run-id: 22998832949 +2026-03-12T12:30:41.1721870Z env: +2026-03-12T12:30:41.1722064Z ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true +2026-03-12T12:30:41.1722345Z MVN_CMD: build/mvn -ntp +2026-03-12T12:30:41.1722563Z WGET_CMD: wget -nv +2026-03-12T12:30:41.1722796Z CCACHE_DIR: /home/runner/work/gluten/gluten/.ccache +2026-03-12T12:30:41.1723086Z SPARK_ANSI_SQL_MODE: false +2026-03-12T12:30:41.1723294Z ##[endgroup] +2026-03-12T12:30:41.3689765Z Downloading single artifact +2026-03-12T12:30:41.5484649Z Preparing to download the following artifacts: +2026-03-12T12:30:41.5486213Z - arrow-jars-centos-7-04771b8bdcffd4ee5e2b5027a62f50e87be72a97 (ID: 5890183559, Size: 23953490, Expected Digest: sha256:ba9052ae288d6fa9221735329c1e571d82857443cdb837cdc0a1d194f808b0c8) +2026-03-12T12:30:41.6915860Z Redirecting to blob download url: https://productionresultssa1.blob.core.windows.net/actions-results/f51091f2-6988-42d8-a475-7bb08423c360/workflow-job-run-9c9931cd-90fb-5b62-be1b-b121f4abd64c/artifacts/166bb0a60002391558cce867f3b5f81dbb3c2bed1fd7b44ce3247ff190123bb5.zip +2026-03-12T12:30:41.6918526Z Starting download of artifact to: /home/runner/work/gluten/gluten/.m2/repository/org/apache/arrow +2026-03-12T12:30:41.8688073Z (node:2004) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead. +2026-03-12T12:30:41.8689889Z (Use `node --trace-deprecation ...` to show where the warning was created) +2026-03-12T12:30:42.7043936Z SHA256 digest of downloaded artifact is ba9052ae288d6fa9221735329c1e571d82857443cdb837cdc0a1d194f808b0c8 +2026-03-12T12:30:42.7045503Z Artifact download completed successfully. +2026-03-12T12:30:42.7046382Z Total of 1 artifact(s) downloaded +2026-03-12T12:30:42.7053543Z Download artifact has finished successfully +2026-03-12T12:30:42.7216338Z ##[group]Run docker pull centos:7 +2026-03-12T12:30:42.7216725Z docker pull centos:7 +2026-03-12T12:30:42.7217183Z docker run -v $GITHUB_WORKSPACE:/work -v /$GITHUB_WORKSPACE/.m2:/root/.m2/ -w /work \ +2026-03-12T12:30:42.7217694Z -e matrix.java=java-8 -e matrix.spark=spark-3.5 \ +2026-03-12T12:30:42.7218004Z centos:7 \ +2026-03-12T12:30:42.7218199Z bash -c " +2026-03-12T12:30:42.7218411Z  set -e +2026-03-12T12:30:42.7218739Z  sed -i -e 's|mirrorlist=|#mirrorlist=|g' /etc/yum.repos.d/CentOS-* || true +2026-03-12T12:30:42.7219399Z  sed -i -e 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-* || true +2026-03-12T12:30:42.7219900Z  +2026-03-12T12:30:42.7220224Z  yum update -y && yum install -y java-1.8.0-openjdk-devel wget tzdata python3-pip +2026-03-12T12:30:42.7220642Z  # Set environment variables +2026-03-12T12:30:42.7220989Z  export JAVA_HOME=/usr/lib/jvm/java-1.8.0-openjdk +2026-03-12T12:30:42.7221518Z  +2026-03-12T12:30:42.7221688Z  # Build gluten +2026-03-12T12:30:42.7222088Z  build/mvn -ntp clean install -Pspark-3.5 -Pjava-8 -Pbackends-velox -DskipTests +2026-03-12T12:30:42.7222517Z  # Build gluten-it +2026-03-12T12:30:42.7222747Z  cd /work/tools/gluten-it +2026-03-12T12:30:42.7223074Z  /work/build/mvn -ntp clean install -Pspark-3.5 -Pjava-8 +2026-03-12T12:30:42.7223382Z  +2026-03-12T12:30:42.7223547Z  # Run TPC-H / TPC-DS +2026-03-12T12:30:42.7223859Z  GLUTEN_IT_JVM_ARGS=-Xmx5G sbin/gluten-it.sh queries-compare \ +2026-03-12T12:30:42.7224507Z  --local --preset=velox --benchmark-type=h --error-on-memleak --off-heap-size=10g -s=1.0 --threads=16 --iterations=1 +2026-03-12T12:30:42.7225139Z  GLUTEN_IT_JVM_ARGS=-Xmx6G sbin/gluten-it.sh queries-compare \ +2026-03-12T12:30:42.7225768Z  --local --preset=velox --benchmark-type=ds --error-on-memleak --off-heap-size=10g -s=1.0 --threads=16 --iterations=1 +2026-03-12T12:30:42.7226287Z  +2026-03-12T12:30:42.7226651Z  # Run TPC-H / TPC-DS with RAS +2026-03-12T12:30:42.7226904Z  cd /work/tools/gluten-it +2026-03-12T12:30:42.7227228Z  GLUTEN_IT_JVM_ARGS=-Xmx5G sbin/gluten-it.sh queries-compare \ +2026-03-12T12:30:42.7227849Z  --local --preset=velox --benchmark-type=h --error-on-memleak --off-heap-size=10g -s=1.0 --threads=16 --iterations=1 \ +2026-03-12T12:30:42.7228437Z  --extra-conf=spark.gluten.ras.enabled=true \ +2026-03-12T12:30:42.7228832Z  && GLUTEN_IT_JVM_ARGS=-Xmx6G sbin/gluten-it.sh queries-compare \ +2026-03-12T12:30:42.7229456Z  --local --preset=velox --benchmark-type=ds --error-on-memleak --off-heap-size=10g -s=1.0 --threads=16 --iterations=1 \ +2026-03-12T12:30:42.7230042Z  --extra-conf=spark.gluten.ras.enabled=true  +2026-03-12T12:30:42.7230317Z " +2026-03-12T12:30:42.7292681Z shell: /usr/bin/bash -e {0} +2026-03-12T12:30:42.7292935Z env: +2026-03-12T12:30:42.7293145Z ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true +2026-03-12T12:30:42.7293437Z MVN_CMD: build/mvn -ntp +2026-03-12T12:30:42.7293653Z WGET_CMD: wget -nv +2026-03-12T12:30:42.7293905Z CCACHE_DIR: /home/runner/work/gluten/gluten/.ccache +2026-03-12T12:30:42.7294199Z SPARK_ANSI_SQL_MODE: false +2026-03-12T12:30:42.7294416Z ##[endgroup] +2026-03-12T12:30:43.4046814Z 7: Pulling from library/centos +2026-03-12T12:30:43.5672384Z 2d473b07cdd5: Pulling fs layer +2026-03-12T12:30:44.1422786Z 2d473b07cdd5: Verifying Checksum +2026-03-12T12:30:44.1423284Z 2d473b07cdd5: Download complete +2026-03-12T12:30:46.9116510Z 2d473b07cdd5: Pull complete +2026-03-12T12:30:46.9160154Z Digest: sha256:be65f488b7764ad3638f236b7b515b3678369a5124c47b8d32916d6487418ea4 +2026-03-12T12:30:46.9176920Z Status: Downloaded newer image for centos:7 +2026-03-12T12:30:46.9186896Z docker.io/library/centos:7 +2026-03-12T12:30:48.7069310Z Loaded plugins: fastestmirror, ovl +2026-03-12T12:30:48.7942000Z Determining fastest mirrors +2026-03-12T12:30:54.5170244Z Resolving Dependencies +2026-03-12T12:30:54.5175286Z --> Running transaction check +2026-03-12T12:30:54.5190593Z ---> Package bash.x86_64 0:4.2.46-34.el7 will be updated +2026-03-12T12:30:54.5301984Z ---> Package bash.x86_64 0:4.2.46-35.el7_9 will be an update +2026-03-12T12:30:54.5329536Z ---> Package bind-license.noarch 32:9.11.4-26.P2.el7 will be updated +2026-03-12T12:30:54.5333265Z ---> Package bind-license.noarch 32:9.11.4-26.P2.el7_9.16 will be an update +2026-03-12T12:30:54.5334397Z ---> Package binutils.x86_64 0:2.27-44.base.el7 will be updated +2026-03-12T12:30:54.5342595Z ---> Package binutils.x86_64 0:2.27-44.base.el7_9.1 will be an update +2026-03-12T12:30:54.5374147Z ---> Package ca-certificates.noarch 0:2020.2.41-70.0.el7_8 will be updated +2026-03-12T12:30:54.5382143Z ---> Package ca-certificates.noarch 0:2023.2.60_v7.0.306-72.el7_9 will be an update +2026-03-12T12:30:54.5391827Z ---> Package centos-release.x86_64 0:7-9.2009.0.el7.centos will be updated +2026-03-12T12:30:54.5409186Z ---> Package centos-release.x86_64 0:7-9.2009.2.el7.centos will be an update +2026-03-12T12:30:54.5410698Z ---> Package coreutils.x86_64 0:8.22-24.el7 will be updated +2026-03-12T12:30:54.5436910Z ---> Package coreutils.x86_64 0:8.22-24.el7_9.2 will be an update +2026-03-12T12:30:54.5476565Z ---> Package curl.x86_64 0:7.29.0-59.el7 will be updated +2026-03-12T12:30:54.5482520Z ---> Package curl.x86_64 0:7.29.0-59.el7_9.2 will be an update +2026-03-12T12:30:54.5581898Z ---> Package cyrus-sasl-lib.x86_64 0:2.1.26-23.el7 will be updated +2026-03-12T12:30:54.5586215Z ---> Package cyrus-sasl-lib.x86_64 0:2.1.26-24.el7_9 will be an update +2026-03-12T12:30:54.5609688Z ---> Package device-mapper.x86_64 7:1.02.170-6.el7 will be updated +2026-03-12T12:30:54.5621008Z ---> Package device-mapper.x86_64 7:1.02.170-6.el7_9.5 will be an update +2026-03-12T12:30:54.5651405Z ---> Package device-mapper-libs.x86_64 7:1.02.170-6.el7 will be updated +2026-03-12T12:30:54.5654830Z ---> Package device-mapper-libs.x86_64 7:1.02.170-6.el7_9.5 will be an update +2026-03-12T12:30:54.5673085Z ---> Package diffutils.x86_64 0:3.3-5.el7 will be updated +2026-03-12T12:30:54.5688953Z ---> Package diffutils.x86_64 0:3.3-6.el7_9 will be an update +2026-03-12T12:30:54.5695487Z ---> Package expat.x86_64 0:2.1.0-12.el7 will be updated +2026-03-12T12:30:54.5710437Z ---> Package expat.x86_64 0:2.1.0-15.el7_9 will be an update +2026-03-12T12:30:54.5714242Z ---> Package geoipupdate.x86_64 0:2.5.0-1.el7 will be updated +2026-03-12T12:30:54.5719020Z ---> Package geoipupdate.x86_64 0:2.5.0-2.el7 will be an update +2026-03-12T12:30:54.5722613Z ---> Package glib2.x86_64 0:2.56.1-7.el7 will be updated +2026-03-12T12:30:54.5733276Z ---> Package glib2.x86_64 0:2.56.1-9.el7_9 will be an update +2026-03-12T12:30:54.5767240Z ---> Package glibc.x86_64 0:2.17-317.el7 will be updated +2026-03-12T12:30:54.5788284Z ---> Package glibc.x86_64 0:2.17-326.el7_9.3 will be an update +2026-03-12T12:30:54.5798705Z ---> Package glibc-common.x86_64 0:2.17-317.el7 will be updated +2026-03-12T12:30:54.5804298Z ---> Package glibc-common.x86_64 0:2.17-326.el7_9.3 will be an update +2026-03-12T12:30:54.5817958Z ---> Package gzip.x86_64 0:1.5-10.el7 will be updated +2026-03-12T12:30:54.5825127Z ---> Package gzip.x86_64 0:1.5-11.el7_9 will be an update +2026-03-12T12:30:54.5831483Z ---> Package kpartx.x86_64 0:0.4.9-133.el7 will be updated +2026-03-12T12:30:54.5837622Z ---> Package kpartx.x86_64 0:0.4.9-136.el7_9 will be an update +2026-03-12T12:30:54.5846762Z ---> Package krb5-libs.x86_64 0:1.15.1-50.el7 will be updated +2026-03-12T12:30:54.5852635Z ---> Package krb5-libs.x86_64 0:1.15.1-55.el7_9 will be an update +2026-03-12T12:30:54.5887801Z ---> Package libblkid.x86_64 0:2.23.2-65.el7 will be updated +2026-03-12T12:30:54.5897105Z ---> Package libblkid.x86_64 0:2.23.2-65.el7_9.1 will be an update +2026-03-12T12:30:54.5907184Z ---> Package libcurl.x86_64 0:7.29.0-59.el7 will be updated +2026-03-12T12:30:54.5914375Z ---> Package libcurl.x86_64 0:7.29.0-59.el7_9.2 will be an update +2026-03-12T12:30:54.5966008Z ---> Package libmount.x86_64 0:2.23.2-65.el7 will be updated +2026-03-12T12:30:54.5970161Z ---> Package libmount.x86_64 0:2.23.2-65.el7_9.1 will be an update +2026-03-12T12:30:54.5980440Z ---> Package libsmartcols.x86_64 0:2.23.2-65.el7 will be updated +2026-03-12T12:30:54.5987064Z ---> Package libsmartcols.x86_64 0:2.23.2-65.el7_9.1 will be an update +2026-03-12T12:30:54.5992126Z ---> Package libssh2.x86_64 0:1.8.0-4.el7 will be updated +2026-03-12T12:30:54.5996357Z ---> Package libssh2.x86_64 0:1.8.0-4.el7_9.1 will be an update +2026-03-12T12:30:54.6001013Z ---> Package libuuid.x86_64 0:2.23.2-65.el7 will be updated +2026-03-12T12:30:54.6006539Z ---> Package libuuid.x86_64 0:2.23.2-65.el7_9.1 will be an update +2026-03-12T12:30:54.6014923Z ---> Package libxml2.x86_64 0:2.9.1-6.el7.5 will be updated +2026-03-12T12:30:54.6028661Z ---> Package libxml2.x86_64 0:2.9.1-6.el7_9.6 will be an update +2026-03-12T12:30:54.6040959Z ---> Package libxml2-python.x86_64 0:2.9.1-6.el7.5 will be updated +2026-03-12T12:30:54.6046233Z ---> Package libxml2-python.x86_64 0:2.9.1-6.el7_9.6 will be an update +2026-03-12T12:30:54.6102549Z ---> Package nspr.x86_64 0:4.25.0-2.el7_9 will be updated +2026-03-12T12:30:54.6111376Z ---> Package nspr.x86_64 0:4.35.0-1.el7_9 will be an update +2026-03-12T12:30:54.6120976Z ---> Package nss.x86_64 0:3.53.1-3.el7_9 will be updated +2026-03-12T12:30:54.6134622Z ---> Package nss.x86_64 0:3.90.0-2.el7_9 will be an update +2026-03-12T12:30:54.6157381Z ---> Package nss-pem.x86_64 0:1.0.3-7.el7 will be updated +2026-03-12T12:30:54.6163525Z ---> Package nss-pem.x86_64 0:1.0.3-7.el7_9.1 will be an update +2026-03-12T12:30:54.6173523Z ---> Package nss-softokn.x86_64 0:3.53.1-6.el7_9 will be updated +2026-03-12T12:30:54.6177165Z ---> Package nss-softokn.x86_64 0:3.90.0-6.el7_9 will be an update +2026-03-12T12:30:54.6192791Z ---> Package nss-softokn-freebl.x86_64 0:3.53.1-6.el7_9 will be updated +2026-03-12T12:30:54.6195937Z ---> Package nss-softokn-freebl.x86_64 0:3.90.0-6.el7_9 will be an update +2026-03-12T12:30:54.6201129Z ---> Package nss-sysinit.x86_64 0:3.53.1-3.el7_9 will be updated +2026-03-12T12:30:54.6203250Z ---> Package nss-sysinit.x86_64 0:3.90.0-2.el7_9 will be an update +2026-03-12T12:30:54.6212616Z ---> Package nss-tools.x86_64 0:3.53.1-3.el7_9 will be updated +2026-03-12T12:30:54.6216621Z ---> Package nss-tools.x86_64 0:3.90.0-2.el7_9 will be an update +2026-03-12T12:30:54.6309116Z ---> Package nss-util.x86_64 0:3.53.1-1.el7_9 will be updated +2026-03-12T12:30:54.6314699Z ---> Package nss-util.x86_64 0:3.90.0-1.el7_9 will be an update +2026-03-12T12:30:54.6321527Z ---> Package openldap.x86_64 0:2.4.44-22.el7 will be updated +2026-03-12T12:30:54.6325211Z ---> Package openldap.x86_64 0:2.4.44-25.el7_9 will be an update +2026-03-12T12:30:54.6350010Z ---> Package openssl-libs.x86_64 1:1.0.2k-19.el7 will be updated +2026-03-12T12:30:54.6353459Z ---> Package openssl-libs.x86_64 1:1.0.2k-26.el7_9 will be an update +2026-03-12T12:30:54.6364353Z ---> Package python.x86_64 0:2.7.5-89.el7 will be updated +2026-03-12T12:30:54.6372048Z ---> Package python.x86_64 0:2.7.5-94.el7_9 will be an update +2026-03-12T12:30:54.6385237Z ---> Package python-libs.x86_64 0:2.7.5-89.el7 will be updated +2026-03-12T12:30:54.6391061Z ---> Package python-libs.x86_64 0:2.7.5-94.el7_9 will be an update +2026-03-12T12:30:54.6426258Z ---> Package rpm.x86_64 0:4.11.3-45.el7 will be updated +2026-03-12T12:30:54.6438863Z ---> Package rpm.x86_64 0:4.11.3-48.el7_9 will be an update +2026-03-12T12:30:54.6465962Z ---> Package rpm-build-libs.x86_64 0:4.11.3-45.el7 will be updated +2026-03-12T12:30:54.6471630Z ---> Package rpm-build-libs.x86_64 0:4.11.3-48.el7_9 will be an update +2026-03-12T12:30:54.6487036Z ---> Package rpm-libs.x86_64 0:4.11.3-45.el7 will be updated +2026-03-12T12:30:54.6490546Z ---> Package rpm-libs.x86_64 0:4.11.3-48.el7_9 will be an update +2026-03-12T12:30:54.6509945Z ---> Package rpm-python.x86_64 0:4.11.3-45.el7 will be updated +2026-03-12T12:30:54.6513477Z ---> Package rpm-python.x86_64 0:4.11.3-48.el7_9 will be an update +2026-03-12T12:30:54.6530276Z ---> Package systemd.x86_64 0:219-78.el7 will be updated +2026-03-12T12:30:54.6549850Z ---> Package systemd.x86_64 0:219-78.el7_9.9 will be an update +2026-03-12T12:30:54.6611790Z ---> Package systemd-libs.x86_64 0:219-78.el7 will be updated +2026-03-12T12:30:54.6617725Z ---> Package systemd-libs.x86_64 0:219-78.el7_9.9 will be an update +2026-03-12T12:30:54.6636524Z ---> Package tzdata.noarch 0:2020d-2.el7 will be updated +2026-03-12T12:30:54.6640134Z ---> Package tzdata.noarch 0:2024a-1.el7 will be an update +2026-03-12T12:30:54.6641056Z ---> Package util-linux.x86_64 0:2.23.2-65.el7 will be updated +2026-03-12T12:30:54.6650658Z ---> Package util-linux.x86_64 0:2.23.2-65.el7_9.1 will be an update +2026-03-12T12:30:54.6692882Z ---> Package vim-minimal.x86_64 2:7.4.629-7.el7 will be updated +2026-03-12T12:30:54.6698069Z ---> Package vim-minimal.x86_64 2:7.4.629-8.el7_9 will be an update +2026-03-12T12:30:54.6702439Z ---> Package xz.x86_64 0:5.2.2-1.el7 will be updated +2026-03-12T12:30:54.6707598Z ---> Package xz.x86_64 0:5.2.2-2.el7_9 will be an update +2026-03-12T12:30:54.6715175Z ---> Package xz-libs.x86_64 0:5.2.2-1.el7 will be updated +2026-03-12T12:30:54.6718450Z ---> Package xz-libs.x86_64 0:5.2.2-2.el7_9 will be an update +2026-03-12T12:30:54.6728520Z ---> Package zlib.x86_64 0:1.2.7-18.el7 will be updated +2026-03-12T12:30:54.6730306Z ---> Package zlib.x86_64 0:1.2.7-21.el7_9 will be an update +2026-03-12T12:30:54.7168798Z --> Finished Dependency Resolution +2026-03-12T12:30:54.7244287Z +2026-03-12T12:30:54.7244668Z Dependencies Resolved +2026-03-12T12:30:54.7309755Z +2026-03-12T12:30:54.7310147Z ================================================================================ +2026-03-12T12:30:54.7311035Z Package Arch Version Repository +2026-03-12T12:30:54.7312094Z Size +2026-03-12T12:30:54.7312876Z ================================================================================ +2026-03-12T12:30:54.7313540Z Updating: +2026-03-12T12:30:54.7314109Z bash x86_64 4.2.46-35.el7_9 updates 1.0 M +2026-03-12T12:30:54.7315491Z bind-license noarch 32:9.11.4-26.P2.el7_9.16 updates 92 k +2026-03-12T12:30:54.7316505Z binutils x86_64 2.27-44.base.el7_9.1 updates 5.9 M +2026-03-12T12:30:54.7317366Z ca-certificates noarch 2023.2.60_v7.0.306-72.el7_9 updates 923 k +2026-03-12T12:30:54.7317969Z centos-release x86_64 7-9.2009.2.el7.centos updates 27 k +2026-03-12T12:30:54.7318501Z coreutils x86_64 8.22-24.el7_9.2 updates 3.3 M +2026-03-12T12:30:54.7319026Z curl x86_64 7.29.0-59.el7_9.2 updates 271 k +2026-03-12T12:30:54.7319557Z cyrus-sasl-lib x86_64 2.1.26-24.el7_9 updates 156 k +2026-03-12T12:30:54.7320176Z device-mapper x86_64 7:1.02.170-6.el7_9.5 updates 297 k +2026-03-12T12:30:54.7320678Z device-mapper-libs x86_64 7:1.02.170-6.el7_9.5 updates 325 k +2026-03-12T12:30:54.7321113Z diffutils x86_64 3.3-6.el7_9 updates 322 k +2026-03-12T12:30:54.7321808Z expat x86_64 2.1.0-15.el7_9 updates 83 k +2026-03-12T12:30:54.7322215Z geoipupdate x86_64 2.5.0-2.el7 updates 35 k +2026-03-12T12:30:54.7322628Z glib2 x86_64 2.56.1-9.el7_9 updates 2.5 M +2026-03-12T12:30:54.7323007Z glibc x86_64 2.17-326.el7_9.3 updates 3.6 M +2026-03-12T12:30:54.7323404Z glibc-common x86_64 2.17-326.el7_9.3 updates 12 M +2026-03-12T12:30:54.7323794Z gzip x86_64 1.5-11.el7_9 updates 130 k +2026-03-12T12:30:54.7324392Z kpartx x86_64 0.4.9-136.el7_9 updates 81 k +2026-03-12T12:30:54.7324794Z krb5-libs x86_64 1.15.1-55.el7_9 updates 810 k +2026-03-12T12:30:54.7325190Z libblkid x86_64 2.23.2-65.el7_9.1 updates 183 k +2026-03-12T12:30:54.7325576Z libcurl x86_64 7.29.0-59.el7_9.2 updates 223 k +2026-03-12T12:30:54.7325965Z libmount x86_64 2.23.2-65.el7_9.1 updates 185 k +2026-03-12T12:30:54.7326836Z libsmartcols x86_64 2.23.2-65.el7_9.1 updates 143 k +2026-03-12T12:30:54.7327596Z libssh2 x86_64 1.8.0-4.el7_9.1 updates 88 k +2026-03-12T12:30:54.7328327Z libuuid x86_64 2.23.2-65.el7_9.1 updates 84 k +2026-03-12T12:30:54.7328838Z libxml2 x86_64 2.9.1-6.el7_9.6 updates 668 k +2026-03-12T12:30:54.7329250Z libxml2-python x86_64 2.9.1-6.el7_9.6 updates 247 k +2026-03-12T12:30:54.7329663Z nspr x86_64 4.35.0-1.el7_9 updates 128 k +2026-03-12T12:30:54.7330033Z nss x86_64 3.90.0-2.el7_9 updates 905 k +2026-03-12T12:30:54.7330416Z nss-pem x86_64 1.0.3-7.el7_9.1 updates 75 k +2026-03-12T12:30:54.7330817Z nss-softokn x86_64 3.90.0-6.el7_9 updates 383 k +2026-03-12T12:30:54.7331519Z nss-softokn-freebl x86_64 3.90.0-6.el7_9 updates 321 k +2026-03-12T12:30:54.7331963Z nss-sysinit x86_64 3.90.0-2.el7_9 updates 67 k +2026-03-12T12:30:54.7332363Z nss-tools x86_64 3.90.0-2.el7_9 updates 557 k +2026-03-12T12:30:54.7332753Z nss-util x86_64 3.90.0-1.el7_9 updates 80 k +2026-03-12T12:30:54.7333151Z openldap x86_64 2.4.44-25.el7_9 updates 356 k +2026-03-12T12:30:54.7333881Z openssl-libs x86_64 1:1.0.2k-26.el7_9 updates 1.2 M +2026-03-12T12:30:54.7334661Z python x86_64 2.7.5-94.el7_9 updates 97 k +2026-03-12T12:30:54.7335431Z python-libs x86_64 2.7.5-94.el7_9 updates 5.6 M +2026-03-12T12:30:54.7335820Z rpm x86_64 4.11.3-48.el7_9 updates 1.2 M +2026-03-12T12:30:54.7336211Z rpm-build-libs x86_64 4.11.3-48.el7_9 updates 108 k +2026-03-12T12:30:54.7336611Z rpm-libs x86_64 4.11.3-48.el7_9 updates 279 k +2026-03-12T12:30:54.7337003Z rpm-python x86_64 4.11.3-48.el7_9 updates 84 k +2026-03-12T12:30:54.7337394Z systemd x86_64 219-78.el7_9.9 updates 5.1 M +2026-03-12T12:30:54.7337789Z systemd-libs x86_64 219-78.el7_9.9 updates 419 k +2026-03-12T12:30:54.7338190Z tzdata noarch 2024a-1.el7 updates 497 k +2026-03-12T12:30:54.7338579Z util-linux x86_64 2.23.2-65.el7_9.1 updates 2.0 M +2026-03-12T12:30:54.7338975Z vim-minimal x86_64 2:7.4.629-8.el7_9 updates 443 k +2026-03-12T12:30:54.7339355Z xz x86_64 5.2.2-2.el7_9 updates 229 k +2026-03-12T12:30:54.7339721Z xz-libs x86_64 5.2.2-2.el7_9 updates 103 k +2026-03-12T12:30:54.7340090Z zlib x86_64 1.2.7-21.el7_9 updates 90 k +2026-03-12T12:30:54.7340329Z +2026-03-12T12:30:54.7340408Z Transaction Summary +2026-03-12T12:30:54.7340636Z ================================================================================ +2026-03-12T12:30:54.7340914Z Upgrade 51 Packages +2026-03-12T12:30:54.7341039Z +2026-03-12T12:30:54.7341116Z Total download size: 53 M +2026-03-12T12:30:54.7341474Z Downloading packages: +2026-03-12T12:30:54.7341908Z Delta RPMs disabled because /usr/bin/applydeltarpm not installed. +2026-03-12T12:30:55.1092652Z warning: /var/cache/yum/x86_64/7/updates/packages/bash-4.2.46-35.el7_9.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY +2026-03-12T12:30:55.1094375Z Public key for bash-4.2.46-35.el7_9.x86_64.rpm is not installed +2026-03-12T12:30:55.9585865Z -------------------------------------------------------------------------------- +2026-03-12T12:30:55.9586544Z Total 43 MB/s | 53 MB 00:01 +2026-03-12T12:30:55.9598434Z Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 +2026-03-12T12:30:55.9630115Z Importing GPG key 0xF4A80EB5: +2026-03-12T12:30:55.9630885Z Userid : "CentOS-7 Key (CentOS 7 Official Signing Key) " +2026-03-12T12:30:55.9631702Z Fingerprint: 6341 ab27 53d7 8a78 a7c2 7bb1 24c6 a8a7 f4a8 0eb5 +2026-03-12T12:30:55.9632212Z Package : centos-release-7-9.2009.0.el7.centos.x86_64 (@CentOS) +2026-03-12T12:30:55.9632688Z From : /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 +2026-03-12T12:30:56.0485687Z Running transaction check +2026-03-12T12:30:56.1207828Z Running transaction test +2026-03-12T12:30:56.2036558Z Transaction test succeeded +2026-03-12T12:30:56.2041753Z Running transaction +2026-03-12T12:30:56.5874023Z Updating : centos-release-7-9.2009.2.el7.centos.x86_64 1/102 +2026-03-12T12:30:56.6713060Z Updating : tzdata-2024a-1.el7.noarch 2/102 +2026-03-12T12:30:56.7049092Z Updating : bash-4.2.46-35.el7_9.x86_64 3/102 +2026-03-12T12:30:58.5567289Z Updating : nss-softokn-freebl-3.90.0-6.el7_9.x86_64 4/102 +2026-03-12T12:30:58.9716575Z Updating : glibc-common-2.17-326.el7_9.3.x86_64 5/102 +2026-03-12T12:30:59.0204119Z Updating : glibc-2.17-326.el7_9.3.x86_64 6/102 +2026-03-12T12:30:59.0521760Z Updating : nspr-4.35.0-1.el7_9.x86_64 7/102 +2026-03-12T12:30:59.1005989Z Updating : nss-util-3.90.0-1.el7_9.x86_64 8/102 +2026-03-12T12:30:59.1347373Z Updating : zlib-1.2.7-21.el7_9.x86_64 9/102 +2026-03-12T12:30:59.1948826Z Updating : xz-libs-5.2.2-2.el7_9.x86_64 10/102 +2026-03-12T12:30:59.2236423Z Updating : systemd-libs-219-78.el7_9.9.x86_64 11/102 +2026-03-12T12:30:59.2866785Z Updating : libuuid-2.23.2-65.el7_9.1.x86_64 12/102 +2026-03-12T12:30:59.3649194Z Updating : nss-softokn-3.90.0-6.el7_9.x86_64 13/102 +2026-03-12T12:30:59.3973204Z Updating : libxml2-2.9.1-6.el7_9.6.x86_64 14/102 +2026-03-12T12:30:59.4478093Z Updating : libsmartcols-2.23.2-65.el7_9.1.x86_64 15/102 +2026-03-12T12:30:59.4697564Z Updating : diffutils-3.3-6.el7_9.x86_64 16/102 +2026-03-12T12:30:59.4698513Z install-info: No such file or directory for /usr/share/info/diffutils.info +2026-03-12T12:30:59.5972543Z Updating : expat-2.1.0-15.el7_9.x86_64 17/102 +2026-03-12T12:31:00.8881867Z Updating : ca-certificates-2023.2.60_v7.0.306-72.el7_9.noarch 18/102 +2026-03-12T12:31:01.1937775Z Updating : 1:openssl-libs-1.0.2k-26.el7_9.x86_64 19/102 +2026-03-12T12:31:01.2903250Z Updating : coreutils-8.22-24.el7_9.2.x86_64 20/102 +2026-03-12T12:31:01.3291864Z Updating : krb5-libs-1.15.1-55.el7_9.x86_64 21/102 +2026-03-12T12:31:01.3681521Z Updating : libblkid-2.23.2-65.el7_9.1.x86_64 22/102 +2026-03-12T12:31:02.2232318Z Updating : libmount-2.23.2-65.el7_9.1.x86_64 23/102 +2026-03-12T12:31:02.2663517Z Updating : python-libs-2.7.5-94.el7_9.x86_64 24/102 +2026-03-12T12:31:02.4621798Z Updating : python-2.7.5-94.el7_9.x86_64 25/102 +2026-03-12T12:31:02.5034103Z Updating : util-linux-2.23.2-65.el7_9.1.x86_64 26/102 +2026-03-12T12:31:02.5367868Z Updating : cyrus-sasl-lib-2.1.26-24.el7_9.x86_64 27/102 +2026-03-12T12:31:02.5423733Z Updating : nss-pem-1.0.3-7.el7_9.1.x86_64 28/102 +2026-03-12T12:31:02.6187821Z Updating : nss-sysinit-3.90.0-2.el7_9.x86_64 29/102 +2026-03-12T12:31:02.7040577Z Updating : nss-3.90.0-2.el7_9.x86_64 30/102 +2026-03-12T12:31:02.7152985Z Updating : nss-tools-3.90.0-2.el7_9.x86_64 31/102 +2026-03-12T12:31:02.7574172Z Updating : libssh2-1.8.0-4.el7_9.1.x86_64 32/102 +2026-03-12T12:31:02.7997664Z Updating : libcurl-7.29.0-59.el7_9.2.x86_64 33/102 +2026-03-12T12:31:02.8238418Z Updating : curl-7.29.0-59.el7_9.2.x86_64 34/102 +2026-03-12T12:31:02.9254793Z Updating : rpm-libs-4.11.3-48.el7_9.x86_64 35/102 +2026-03-12T12:31:02.9596399Z Updating : rpm-4.11.3-48.el7_9.x86_64 36/102 +2026-03-12T12:31:03.0174297Z Updating : openldap-2.4.44-25.el7_9.x86_64 37/102 +2026-03-12T12:31:03.6570151Z Updating : rpm-build-libs-4.11.3-48.el7_9.x86_64 38/102 +2026-03-12T12:31:03.8434817Z Updating : systemd-219-78.el7_9.9.x86_64 39/102 +2026-03-12T12:31:03.8435659Z Failed to get D-Bus connection: Operation not permitted +2026-03-12T12:31:03.9022575Z Updating : 7:device-mapper-libs-1.02.170-6.el7_9.5.x86_64 40/102 +2026-03-12T12:31:03.9286758Z Updating : 7:device-mapper-1.02.170-6.el7_9.5.x86_64 41/102 +2026-03-12T12:31:03.9380811Z Updating : kpartx-0.4.9-136.el7_9.x86_64 42/102 +2026-03-12T12:31:03.9449857Z Updating : rpm-python-4.11.3-48.el7_9.x86_64 43/102 +2026-03-12T12:31:03.9754437Z Updating : geoipupdate-2.5.0-2.el7.x86_64 44/102 +2026-03-12T12:31:04.1852673Z Updating : libxml2-python-2.9.1-6.el7_9.6.x86_64 45/102 +2026-03-12T12:31:04.6826717Z Updating : glib2-2.56.1-9.el7_9.x86_64 46/102 +2026-03-12T12:31:04.7176943Z Updating : binutils-2.27-44.base.el7_9.1.x86_64 47/102 +2026-03-12T12:31:04.7177917Z install-info: No such file or directory for /usr/share/info/as.info.gz +2026-03-12T12:31:04.7178502Z install-info: No such file or directory for /usr/share/info/binutils.info.gz +2026-03-12T12:31:04.7179256Z install-info: No such file or directory for /usr/share/info/gprof.info.gz +2026-03-12T12:31:04.7179802Z install-info: No such file or directory for /usr/share/info/ld.info.gz +2026-03-12T12:31:04.7180708Z install-info: No such file or directory for /usr/share/info/standards.info.gz +2026-03-12T12:31:04.7729435Z Updating : gzip-1.5-11.el7_9.x86_64 48/102 +2026-03-12T12:31:04.8099278Z Updating : xz-5.2.2-2.el7_9.x86_64 49/102 +2026-03-12T12:31:04.8154702Z Updating : 2:vim-minimal-7.4.629-8.el7_9.x86_64 50/102 +2026-03-12T12:31:04.8186364Z Updating : 32:bind-license-9.11.4-26.P2.el7_9.16.noarch 51/102 +2026-03-12T12:31:04.8220861Z Cleanup : rpm-python-4.11.3-45.el7.x86_64 52/102 +2026-03-12T12:31:04.8260544Z Cleanup : libxml2-python-2.9.1-6.el7.5.x86_64 53/102 +2026-03-12T12:31:04.8525498Z Cleanup : rpm-build-libs-4.11.3-45.el7.x86_64 54/102 +2026-03-12T12:31:04.8840297Z Cleanup : glib2-2.56.1-7.el7.x86_64 55/102 +2026-03-12T12:31:04.9007369Z Cleanup : python-2.7.5-89.el7.x86_64 56/102 +2026-03-12T12:31:04.9351416Z Cleanup : python-libs-2.7.5-89.el7.x86_64 57/102 +2026-03-12T12:31:04.9614945Z Cleanup : libxml2-2.9.1-6.el7.5.x86_64 58/102 +2026-03-12T12:31:04.9849033Z Cleanup : xz-5.2.2-1.el7.x86_64 59/102 +2026-03-12T12:31:05.0137969Z Cleanup : binutils-2.27-44.base.el7.x86_64 60/102 +2026-03-12T12:31:05.0363703Z Cleanup : geoipupdate-2.5.0-1.el7.x86_64 61/102 +2026-03-12T12:31:05.0402037Z Cleanup : gzip-1.5-10.el7.x86_64 62/102 +2026-03-12T12:31:05.0433128Z Cleanup : kpartx-0.4.9-133.el7.x86_64 63/102 +2026-03-12T12:31:05.0881548Z Cleanup : 7:device-mapper-libs-1.02.170-6.el7.x86_64 64/102 +2026-03-12T12:31:05.1179245Z Cleanup : 7:device-mapper-1.02.170-6.el7.x86_64 65/102 +2026-03-12T12:31:05.1472752Z Cleanup : systemd-219-78.el7.x86_64 66/102 +2026-03-12T12:31:05.1506143Z Cleanup : curl-7.29.0-59.el7.x86_64 67/102 +2026-03-12T12:31:05.1760922Z Cleanup : libcurl-7.29.0-59.el7.x86_64 68/102 +2026-03-12T12:31:05.1989878Z Cleanup : openldap-2.4.44-22.el7.x86_64 69/102 +2026-03-12T12:31:05.2254540Z Cleanup : rpm-libs-4.11.3-45.el7.x86_64 70/102 +2026-03-12T12:31:05.2329160Z Cleanup : rpm-4.11.3-45.el7.x86_64 71/102 +2026-03-12T12:31:05.2387386Z Cleanup : util-linux-2.23.2-65.el7.x86_64 72/102 +2026-03-12T12:31:05.2424695Z Cleanup : nss-tools-3.53.1-3.el7_9.x86_64 73/102 +2026-03-12T12:31:05.2499307Z Cleanup : nss-sysinit-3.53.1-3.el7_9.x86_64 74/102 +2026-03-12T12:31:05.2783766Z Cleanup : nss-3.53.1-3.el7_9.x86_64 75/102 +2026-03-12T12:31:05.2816674Z Cleanup : nss-pem-1.0.3-7.el7.x86_64 76/102 +2026-03-12T12:31:05.3069125Z Cleanup : nss-softokn-3.53.1-6.el7_9.x86_64 77/102 +2026-03-12T12:31:05.3324092Z Cleanup : libmount-2.23.2-65.el7.x86_64 78/102 +2026-03-12T12:31:05.3603677Z Cleanup : libblkid-2.23.2-65.el7.x86_64 79/102 +2026-03-12T12:31:05.3852233Z Cleanup : libssh2-1.8.0-4.el7.x86_64 80/102 +2026-03-12T12:31:05.4116184Z Cleanup : systemd-libs-219-78.el7.x86_64 81/102 +2026-03-12T12:31:05.4386355Z Cleanup : cyrus-sasl-lib-2.1.26-23.el7.x86_64 82/102 +2026-03-12T12:31:05.4856769Z Cleanup : krb5-libs-1.15.1-50.el7.x86_64 83/102 +2026-03-12T12:31:05.4923893Z Cleanup : coreutils-8.22-24.el7.x86_64 84/102 +2026-03-12T12:31:05.5369448Z Cleanup : 1:openssl-libs-1.0.2k-19.el7.x86_64 85/102 +2026-03-12T12:31:05.5409782Z Cleanup : diffutils-3.3-5.el7.x86_64 86/102 +2026-03-12T12:31:05.5439178Z Cleanup : ca-certificates-2020.2.41-70.0.el7_8.noarch 87/102 +2026-03-12T12:31:05.5689732Z Cleanup : zlib-1.2.7-18.el7.x86_64 88/102 +2026-03-12T12:31:05.5942574Z Cleanup : xz-libs-5.2.2-1.el7.x86_64 89/102 +2026-03-12T12:31:05.6198152Z Cleanup : libuuid-2.23.2-65.el7.x86_64 90/102 +2026-03-12T12:31:05.6453245Z Cleanup : libsmartcols-2.23.2-65.el7.x86_64 91/102 +2026-03-12T12:31:05.6702264Z Cleanup : expat-2.1.0-12.el7.x86_64 92/102 +2026-03-12T12:31:05.6733117Z Cleanup : 2:vim-minimal-7.4.629-7.el7.x86_64 93/102 +2026-03-12T12:31:05.6764154Z Cleanup : centos-release-7-9.2009.0.el7.centos.x86_64 94/102 +2026-03-12T12:31:05.6853268Z Cleanup : 32:bind-license-9.11.4-26.P2.el7.noarch 95/102 +2026-03-12T12:31:05.6964066Z Cleanup : glibc-common-2.17-317.el7.x86_64 96/102 +2026-03-12T12:31:05.7007473Z Cleanup : bash-4.2.46-34.el7.x86_64 97/102 +2026-03-12T12:31:05.7265310Z Cleanup : nspr-4.25.0-2.el7_9.x86_64 98/102 +2026-03-12T12:31:05.7520436Z Cleanup : nss-util-3.53.1-1.el7_9.x86_64 99/102 +2026-03-12T12:31:05.7582172Z Cleanup : nss-softokn-freebl-3.53.1-6.el7_9.x86_64 100/102 +2026-03-12T12:31:05.7983428Z Cleanup : glibc-2.17-317.el7.x86_64 101/102 +2026-03-12T12:31:05.8784946Z Cleanup : tzdata-2020d-2.el7.noarch 102/102 +2026-03-12T12:31:05.8890519Z Verifying : libblkid-2.23.2-65.el7_9.1.x86_64 1/102 +2026-03-12T12:31:05.8945946Z Verifying : libcurl-7.29.0-59.el7_9.2.x86_64 2/102 +2026-03-12T12:31:05.8992941Z Verifying : libsmartcols-2.23.2-65.el7_9.1.x86_64 3/102 +2026-03-12T12:31:05.9062741Z Verifying : glibc-common-2.17-326.el7_9.3.x86_64 4/102 +2026-03-12T12:31:05.9132459Z Verifying : nss-softokn-3.90.0-6.el7_9.x86_64 5/102 +2026-03-12T12:31:05.9193674Z Verifying : openldap-2.4.44-25.el7_9.x86_64 6/102 +2026-03-12T12:31:05.9234986Z Verifying : libxml2-python-2.9.1-6.el7_9.6.x86_64 7/102 +2026-03-12T12:31:05.9290015Z Verifying : 7:device-mapper-1.02.170-6.el7_9.5.x86_64 8/102 +2026-03-12T12:31:05.9339685Z Verifying : libxml2-2.9.1-6.el7_9.6.x86_64 9/102 +2026-03-12T12:31:05.9388682Z Verifying : libmount-2.23.2-65.el7_9.1.x86_64 10/102 +2026-03-12T12:31:05.9432745Z Verifying : zlib-1.2.7-21.el7_9.x86_64 11/102 +2026-03-12T12:31:05.9482169Z Verifying : tzdata-2024a-1.el7.noarch 12/102 +2026-03-12T12:31:05.9524109Z Verifying : libssh2-1.8.0-4.el7_9.1.x86_64 13/102 +2026-03-12T12:31:05.9568839Z Verifying : geoipupdate-2.5.0-2.el7.x86_64 14/102 +2026-03-12T12:31:05.9619305Z Verifying : 1:openssl-libs-1.0.2k-26.el7_9.x86_64 15/102 +2026-03-12T12:31:05.9659753Z Verifying : nss-pem-1.0.3-7.el7_9.1.x86_64 16/102 +2026-03-12T12:31:05.9715734Z Verifying : util-linux-2.23.2-65.el7_9.1.x86_64 17/102 +2026-03-12T12:31:05.9763587Z Verifying : binutils-2.27-44.base.el7_9.1.x86_64 18/102 +2026-03-12T12:31:05.9823735Z Verifying : bash-4.2.46-35.el7_9.x86_64 19/102 +2026-03-12T12:31:05.9882071Z Verifying : python-2.7.5-94.el7_9.x86_64 20/102 +2026-03-12T12:31:05.9927875Z Verifying : nss-tools-3.90.0-2.el7_9.x86_64 21/102 +2026-03-12T12:31:05.9978409Z Verifying : systemd-219-78.el7_9.9.x86_64 22/102 +2026-03-12T12:31:06.0025465Z Verifying : 2:vim-minimal-7.4.629-8.el7_9.x86_64 23/102 +2026-03-12T12:31:06.0068264Z Verifying : nss-sysinit-3.90.0-2.el7_9.x86_64 24/102 +2026-03-12T12:31:06.0112528Z Verifying : cyrus-sasl-lib-2.1.26-24.el7_9.x86_64 25/102 +2026-03-12T12:31:06.0161698Z Verifying : python-libs-2.7.5-94.el7_9.x86_64 26/102 +2026-03-12T12:31:06.0225654Z Verifying : 7:device-mapper-libs-1.02.170-6.el7_9.5.x86_64 27/102 +2026-03-12T12:31:06.0269061Z Verifying : nss-softokn-freebl-3.90.0-6.el7_9.x86_64 28/102 +2026-03-12T12:31:06.0312768Z Verifying : kpartx-0.4.9-136.el7_9.x86_64 29/102 +2026-03-12T12:31:06.0361762Z Verifying : krb5-libs-1.15.1-55.el7_9.x86_64 30/102 +2026-03-12T12:31:06.0418087Z Verifying : glibc-2.17-326.el7_9.3.x86_64 31/102 +2026-03-12T12:31:06.0464886Z Verifying : coreutils-8.22-24.el7_9.2.x86_64 32/102 +2026-03-12T12:31:06.0511105Z Verifying : rpm-4.11.3-48.el7_9.x86_64 33/102 +2026-03-12T12:31:06.0553709Z Verifying : rpm-libs-4.11.3-48.el7_9.x86_64 34/102 +2026-03-12T12:31:06.0598998Z Verifying : systemd-libs-219-78.el7_9.9.x86_64 35/102 +2026-03-12T12:31:06.0650899Z Verifying : nss-util-3.90.0-1.el7_9.x86_64 36/102 +2026-03-12T12:31:06.0693602Z Verifying : ca-certificates-2023.2.60_v7.0.306-72.el7_9.noarch 37/102 +2026-03-12T12:31:06.0743351Z Verifying : libuuid-2.23.2-65.el7_9.1.x86_64 38/102 +2026-03-12T12:31:06.0788801Z Verifying : xz-libs-5.2.2-2.el7_9.x86_64 39/102 +2026-03-12T12:31:06.0843182Z Verifying : 32:bind-license-9.11.4-26.P2.el7_9.16.noarch 40/102 +2026-03-12T12:31:06.0883635Z Verifying : diffutils-3.3-6.el7_9.x86_64 41/102 +2026-03-12T12:31:06.0929069Z Verifying : nss-3.90.0-2.el7_9.x86_64 42/102 +2026-03-12T12:31:06.0969224Z Verifying : expat-2.1.0-15.el7_9.x86_64 43/102 +2026-03-12T12:31:06.1008314Z Verifying : glib2-2.56.1-9.el7_9.x86_64 44/102 +2026-03-12T12:31:06.1052362Z Verifying : curl-7.29.0-59.el7_9.2.x86_64 45/102 +2026-03-12T12:31:06.1092569Z Verifying : centos-release-7-9.2009.2.el7.centos.x86_64 46/102 +2026-03-12T12:31:06.1130893Z Verifying : gzip-1.5-11.el7_9.x86_64 47/102 +2026-03-12T12:31:06.1173429Z Verifying : rpm-python-4.11.3-48.el7_9.x86_64 48/102 +2026-03-12T12:31:06.1225948Z Verifying : nspr-4.35.0-1.el7_9.x86_64 49/102 +2026-03-12T12:31:06.1282513Z Verifying : xz-5.2.2-2.el7_9.x86_64 50/102 +2026-03-12T12:31:06.1350134Z Verifying : rpm-build-libs-4.11.3-48.el7_9.x86_64 51/102 +2026-03-12T12:31:06.1367363Z Verifying : rpm-4.11.3-45.el7.x86_64 52/102 +2026-03-12T12:31:06.1383248Z Verifying : nss-tools-3.53.1-3.el7_9.x86_64 53/102 +2026-03-12T12:31:06.1400161Z Verifying : glibc-common-2.17-317.el7.x86_64 54/102 +2026-03-12T12:31:06.1415497Z Verifying : ca-certificates-2020.2.41-70.0.el7_8.noarch 55/102 +2026-03-12T12:31:06.1428777Z Verifying : nss-softokn-3.53.1-6.el7_9.x86_64 56/102 +2026-03-12T12:31:06.1440417Z Verifying : nss-util-3.53.1-1.el7_9.x86_64 57/102 +2026-03-12T12:31:06.1452265Z Verifying : glib2-2.56.1-7.el7.x86_64 58/102 +2026-03-12T12:31:06.1465275Z Verifying : libssh2-1.8.0-4.el7.x86_64 59/102 +2026-03-12T12:31:06.1477616Z Verifying : nspr-4.25.0-2.el7_9.x86_64 60/102 +2026-03-12T12:31:06.1489243Z Verifying : nss-pem-1.0.3-7.el7.x86_64 61/102 +2026-03-12T12:31:06.1498258Z Verifying : systemd-219-78.el7.x86_64 62/102 +2026-03-12T12:31:06.1510560Z Verifying : 7:device-mapper-1.02.170-6.el7.x86_64 63/102 +2026-03-12T12:31:06.1519447Z Verifying : libblkid-2.23.2-65.el7.x86_64 64/102 +2026-03-12T12:31:06.1532553Z Verifying : rpm-libs-4.11.3-45.el7.x86_64 65/102 +2026-03-12T12:31:06.1544746Z Verifying : 1:openssl-libs-1.0.2k-19.el7.x86_64 66/102 +2026-03-12T12:31:06.1557735Z Verifying : libxml2-python-2.9.1-6.el7.5.x86_64 67/102 +2026-03-12T12:31:06.1569950Z Verifying : tzdata-2020d-2.el7.noarch 68/102 +2026-03-12T12:31:06.1582033Z Verifying : libuuid-2.23.2-65.el7.x86_64 69/102 +2026-03-12T12:31:06.1590843Z Verifying : 2:vim-minimal-7.4.629-7.el7.x86_64 70/102 +2026-03-12T12:31:06.1603855Z Verifying : geoipupdate-2.5.0-1.el7.x86_64 71/102 +2026-03-12T12:31:06.1617821Z Verifying : coreutils-8.22-24.el7.x86_64 72/102 +2026-03-12T12:31:06.1630296Z Verifying : nss-sysinit-3.53.1-3.el7_9.x86_64 73/102 +2026-03-12T12:31:06.1642705Z Verifying : nss-softokn-freebl-3.53.1-6.el7_9.x86_64 74/102 +2026-03-12T12:31:06.1655058Z Verifying : rpm-python-4.11.3-45.el7.x86_64 75/102 +2026-03-12T12:31:06.1663938Z Verifying : libcurl-7.29.0-59.el7.x86_64 76/102 +2026-03-12T12:31:06.1676907Z Verifying : curl-7.29.0-59.el7.x86_64 77/102 +2026-03-12T12:31:06.1690938Z Verifying : krb5-libs-1.15.1-50.el7.x86_64 78/102 +2026-03-12T12:31:06.1703152Z Verifying : rpm-build-libs-4.11.3-45.el7.x86_64 79/102 +2026-03-12T12:31:06.1716812Z Verifying : gzip-1.5-10.el7.x86_64 80/102 +2026-03-12T12:31:06.1728860Z Verifying : binutils-2.27-44.base.el7.x86_64 81/102 +2026-03-12T12:31:06.1740960Z Verifying : nss-3.53.1-3.el7_9.x86_64 82/102 +2026-03-12T12:31:06.1753158Z Verifying : zlib-1.2.7-18.el7.x86_64 83/102 +2026-03-12T12:31:06.1762399Z Verifying : libxml2-2.9.1-6.el7.5.x86_64 84/102 +2026-03-12T12:31:06.1775421Z Verifying : centos-release-7-9.2009.0.el7.centos.x86_64 85/102 +2026-03-12T12:31:06.1787603Z Verifying : systemd-libs-219-78.el7.x86_64 86/102 +2026-03-12T12:31:06.1800193Z Verifying : diffutils-3.3-5.el7.x86_64 87/102 +2026-03-12T12:31:06.1809625Z Verifying : openldap-2.4.44-22.el7.x86_64 88/102 +2026-03-12T12:31:06.1821925Z Verifying : 7:device-mapper-libs-1.02.170-6.el7.x86_64 89/102 +2026-03-12T12:31:06.1834132Z Verifying : util-linux-2.23.2-65.el7.x86_64 90/102 +2026-03-12T12:31:06.1845978Z Verifying : xz-libs-5.2.2-1.el7.x86_64 91/102 +2026-03-12T12:31:06.1858878Z Verifying : python-2.7.5-89.el7.x86_64 92/102 +2026-03-12T12:31:06.1867812Z Verifying : expat-2.1.0-12.el7.x86_64 93/102 +2026-03-12T12:31:06.1880174Z Verifying : glibc-2.17-317.el7.x86_64 94/102 +2026-03-12T12:31:06.1892452Z Verifying : bash-4.2.46-34.el7.x86_64 95/102 +2026-03-12T12:31:06.1905282Z Verifying : kpartx-0.4.9-133.el7.x86_64 96/102 +2026-03-12T12:31:06.1914313Z Verifying : 32:bind-license-9.11.4-26.P2.el7.noarch 97/102 +2026-03-12T12:31:06.1926484Z Verifying : python-libs-2.7.5-89.el7.x86_64 98/102 +2026-03-12T12:31:06.1939040Z Verifying : xz-5.2.2-1.el7.x86_64 99/102 +2026-03-12T12:31:06.1951736Z Verifying : libsmartcols-2.23.2-65.el7.x86_64 100/102 +2026-03-12T12:31:06.1964259Z Verifying : cyrus-sasl-lib-2.1.26-23.el7.x86_64 101/102 +2026-03-12T12:31:06.2120616Z Verifying : libmount-2.23.2-65.el7.x86_64 102/102 +2026-03-12T12:31:06.2121695Z +2026-03-12T12:31:06.2121839Z Updated: +2026-03-12T12:31:06.2122569Z bash.x86_64 0:4.2.46-35.el7_9 +2026-03-12T12:31:06.2123709Z bind-license.noarch 32:9.11.4-26.P2.el7_9.16 +2026-03-12T12:31:06.2124594Z binutils.x86_64 0:2.27-44.base.el7_9.1 +2026-03-12T12:31:06.2125476Z ca-certificates.noarch 0:2023.2.60_v7.0.306-72.el7_9 +2026-03-12T12:31:06.2126360Z centos-release.x86_64 0:7-9.2009.2.el7.centos +2026-03-12T12:31:06.2126900Z coreutils.x86_64 0:8.22-24.el7_9.2 +2026-03-12T12:31:06.2127392Z curl.x86_64 0:7.29.0-59.el7_9.2 +2026-03-12T12:31:06.2127887Z cyrus-sasl-lib.x86_64 0:2.1.26-24.el7_9 +2026-03-12T12:31:06.2128426Z device-mapper.x86_64 7:1.02.170-6.el7_9.5 +2026-03-12T12:31:06.2128985Z device-mapper-libs.x86_64 7:1.02.170-6.el7_9.5 +2026-03-12T12:31:06.2129536Z diffutils.x86_64 0:3.3-6.el7_9 +2026-03-12T12:31:06.2130027Z expat.x86_64 0:2.1.0-15.el7_9 +2026-03-12T12:31:06.2130537Z geoipupdate.x86_64 0:2.5.0-2.el7 +2026-03-12T12:31:06.2131034Z glib2.x86_64 0:2.56.1-9.el7_9 +2026-03-12T12:31:06.2131762Z glibc.x86_64 0:2.17-326.el7_9.3 +2026-03-12T12:31:06.2132269Z glibc-common.x86_64 0:2.17-326.el7_9.3 +2026-03-12T12:31:06.2132764Z gzip.x86_64 0:1.5-11.el7_9 +2026-03-12T12:31:06.2133245Z kpartx.x86_64 0:0.4.9-136.el7_9 +2026-03-12T12:31:06.2133756Z krb5-libs.x86_64 0:1.15.1-55.el7_9 +2026-03-12T12:31:06.2134257Z libblkid.x86_64 0:2.23.2-65.el7_9.1 +2026-03-12T12:31:06.2134753Z libcurl.x86_64 0:7.29.0-59.el7_9.2 +2026-03-12T12:31:06.2135449Z libmount.x86_64 0:2.23.2-65.el7_9.1 +2026-03-12T12:31:06.2135972Z libsmartcols.x86_64 0:2.23.2-65.el7_9.1 +2026-03-12T12:31:06.2136412Z libssh2.x86_64 0:1.8.0-4.el7_9.1 +2026-03-12T12:31:06.2136820Z libuuid.x86_64 0:2.23.2-65.el7_9.1 +2026-03-12T12:31:06.2137211Z libxml2.x86_64 0:2.9.1-6.el7_9.6 +2026-03-12T12:31:06.2137624Z libxml2-python.x86_64 0:2.9.1-6.el7_9.6 +2026-03-12T12:31:06.2138029Z nspr.x86_64 0:4.35.0-1.el7_9 +2026-03-12T12:31:06.2138403Z nss.x86_64 0:3.90.0-2.el7_9 +2026-03-12T12:31:06.2155830Z nss-pem.x86_64 0:1.0.3-7.el7_9.1 +2026-03-12T12:31:06.2156529Z nss-softokn.x86_64 0:3.90.0-6.el7_9 +2026-03-12T12:31:06.2157318Z nss-softokn-freebl.x86_64 0:3.90.0-6.el7_9 +2026-03-12T12:31:06.2158035Z nss-sysinit.x86_64 0:3.90.0-2.el7_9 +2026-03-12T12:31:06.2158690Z nss-tools.x86_64 0:3.90.0-2.el7_9 +2026-03-12T12:31:06.2159318Z nss-util.x86_64 0:3.90.0-1.el7_9 +2026-03-12T12:31:06.2159907Z openldap.x86_64 0:2.4.44-25.el7_9 +2026-03-12T12:31:06.2160382Z openssl-libs.x86_64 1:1.0.2k-26.el7_9 +2026-03-12T12:31:06.2160800Z python.x86_64 0:2.7.5-94.el7_9 +2026-03-12T12:31:06.2161735Z python-libs.x86_64 0:2.7.5-94.el7_9 +2026-03-12T12:31:06.2162189Z rpm.x86_64 0:4.11.3-48.el7_9 +2026-03-12T12:31:06.2162606Z rpm-build-libs.x86_64 0:4.11.3-48.el7_9 +2026-03-12T12:31:06.2163021Z rpm-libs.x86_64 0:4.11.3-48.el7_9 +2026-03-12T12:31:06.2163424Z rpm-python.x86_64 0:4.11.3-48.el7_9 +2026-03-12T12:31:06.2163832Z systemd.x86_64 0:219-78.el7_9.9 +2026-03-12T12:31:06.2164243Z systemd-libs.x86_64 0:219-78.el7_9.9 +2026-03-12T12:31:06.2164669Z tzdata.noarch 0:2024a-1.el7 +2026-03-12T12:31:06.2165096Z util-linux.x86_64 0:2.23.2-65.el7_9.1 +2026-03-12T12:31:06.2165515Z vim-minimal.x86_64 2:7.4.629-8.el7_9 +2026-03-12T12:31:06.2165908Z xz.x86_64 0:5.2.2-2.el7_9 +2026-03-12T12:31:06.2166289Z xz-libs.x86_64 0:5.2.2-2.el7_9 +2026-03-12T12:31:06.2166674Z zlib.x86_64 0:1.2.7-21.el7_9 +2026-03-12T12:31:06.2166912Z +2026-03-12T12:31:06.2166994Z Complete! +2026-03-12T12:31:06.3296798Z Loaded plugins: fastestmirror, ovl +2026-03-12T12:31:06.3721647Z Loading mirror speeds from cached hostfile +2026-03-12T12:31:06.5457030Z Package tzdata-2024a-1.el7.noarch already installed and latest version +2026-03-12T12:31:06.5909488Z Resolving Dependencies +2026-03-12T12:31:06.5914370Z --> Running transaction check +2026-03-12T12:31:06.5915607Z ---> Package java-1.8.0-openjdk-devel.x86_64 1:1.8.0.412.b08-1.el7_9 will be installed +2026-03-12T12:31:06.5975230Z --> Processing Dependency: java-1.8.0-openjdk(x86-64) = 1:1.8.0.412.b08-1.el7_9 for package: 1:java-1.8.0-openjdk-devel-1.8.0.412.b08-1.el7_9.x86_64 +2026-03-12T12:31:06.7060121Z --> Processing Dependency: libjvm.so()(64bit) for package: 1:java-1.8.0-openjdk-devel-1.8.0.412.b08-1.el7_9.x86_64 +2026-03-12T12:31:06.7327446Z --> Processing Dependency: libjava.so()(64bit) for package: 1:java-1.8.0-openjdk-devel-1.8.0.412.b08-1.el7_9.x86_64 +2026-03-12T12:31:06.7328539Z --> Processing Dependency: libX11.so.6()(64bit) for package: 1:java-1.8.0-openjdk-devel-1.8.0.412.b08-1.el7_9.x86_64 +2026-03-12T12:31:06.7352670Z ---> Package python3-pip.noarch 0:9.0.3-8.el7 will be installed +2026-03-12T12:31:06.7361032Z --> Processing Dependency: python(abi) = 3.6 for package: python3-pip-9.0.3-8.el7.noarch +2026-03-12T12:31:06.7418602Z --> Processing Dependency: python3-setuptools for package: python3-pip-9.0.3-8.el7.noarch +2026-03-12T12:31:06.7427723Z --> Processing Dependency: /usr/bin/python3 for package: python3-pip-9.0.3-8.el7.noarch +2026-03-12T12:31:06.7434967Z ---> Package wget.x86_64 0:1.14-18.el7_6.1 will be installed +2026-03-12T12:31:06.7462862Z --> Running transaction check +2026-03-12T12:31:06.7463549Z ---> Package java-1.8.0-openjdk.x86_64 1:1.8.0.412.b08-1.el7_9 will be installed +2026-03-12T12:31:06.7480049Z --> Processing Dependency: xorg-x11-fonts-Type1 for package: 1:java-1.8.0-openjdk-1.8.0.412.b08-1.el7_9.x86_64 +2026-03-12T12:31:06.7489954Z --> Processing Dependency: libpng15.so.15(PNG15_0)(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.412.b08-1.el7_9.x86_64 +2026-03-12T12:31:06.7503592Z --> Processing Dependency: libjpeg.so.62(LIBJPEG_6.2)(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.412.b08-1.el7_9.x86_64 +2026-03-12T12:31:06.7517075Z --> Processing Dependency: libasound.so.2(ALSA_0.9.0rc4)(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.412.b08-1.el7_9.x86_64 +2026-03-12T12:31:06.7531173Z --> Processing Dependency: libasound.so.2(ALSA_0.9)(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.412.b08-1.el7_9.x86_64 +2026-03-12T12:31:06.7533127Z --> Processing Dependency: libXcomposite(x86-64) for package: 1:java-1.8.0-openjdk-1.8.0.412.b08-1.el7_9.x86_64 +2026-03-12T12:31:06.7546363Z --> Processing Dependency: gtk2(x86-64) for package: 1:java-1.8.0-openjdk-1.8.0.412.b08-1.el7_9.x86_64 +2026-03-12T12:31:06.7562795Z --> Processing Dependency: fontconfig(x86-64) for package: 1:java-1.8.0-openjdk-1.8.0.412.b08-1.el7_9.x86_64 +2026-03-12T12:31:06.7577603Z --> Processing Dependency: libpng15.so.15()(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.412.b08-1.el7_9.x86_64 +2026-03-12T12:31:06.7580601Z --> Processing Dependency: libjpeg.so.62()(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.412.b08-1.el7_9.x86_64 +2026-03-12T12:31:06.7584144Z --> Processing Dependency: libgif.so.4()(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.412.b08-1.el7_9.x86_64 +2026-03-12T12:31:06.7598306Z --> Processing Dependency: libasound.so.2()(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.412.b08-1.el7_9.x86_64 +2026-03-12T12:31:06.7601393Z --> Processing Dependency: libXtst.so.6()(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.412.b08-1.el7_9.x86_64 +2026-03-12T12:31:06.7613631Z --> Processing Dependency: libXrender.so.1()(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.412.b08-1.el7_9.x86_64 +2026-03-12T12:31:06.7626143Z --> Processing Dependency: libXi.so.6()(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.412.b08-1.el7_9.x86_64 +2026-03-12T12:31:06.7638382Z --> Processing Dependency: libXext.so.6()(64bit) for package: 1:java-1.8.0-openjdk-1.8.0.412.b08-1.el7_9.x86_64 +2026-03-12T12:31:06.7650358Z ---> Package java-1.8.0-openjdk-headless.x86_64 1:1.8.0.412.b08-1.el7_9 will be installed +2026-03-12T12:31:06.7676940Z --> Processing Dependency: tzdata-java >= 2023d for package: 1:java-1.8.0-openjdk-headless-1.8.0.412.b08-1.el7_9.x86_64 +2026-03-12T12:31:06.7692204Z --> Processing Dependency: copy-jdk-configs >= 3.3 for package: 1:java-1.8.0-openjdk-headless-1.8.0.412.b08-1.el7_9.x86_64 +2026-03-12T12:31:06.7706028Z --> Processing Dependency: pcsc-lite-libs(x86-64) for package: 1:java-1.8.0-openjdk-headless-1.8.0.412.b08-1.el7_9.x86_64 +2026-03-12T12:31:06.7718822Z --> Processing Dependency: lksctp-tools(x86-64) for package: 1:java-1.8.0-openjdk-headless-1.8.0.412.b08-1.el7_9.x86_64 +2026-03-12T12:31:06.7732875Z --> Processing Dependency: jpackage-utils for package: 1:java-1.8.0-openjdk-headless-1.8.0.412.b08-1.el7_9.x86_64 +2026-03-12T12:31:06.7743198Z --> Processing Dependency: cups-libs(x86-64) for package: 1:java-1.8.0-openjdk-headless-1.8.0.412.b08-1.el7_9.x86_64 +2026-03-12T12:31:06.7764080Z --> Processing Dependency: libfreetype.so.6()(64bit) for package: 1:java-1.8.0-openjdk-headless-1.8.0.412.b08-1.el7_9.x86_64 +2026-03-12T12:31:06.7781810Z ---> Package libX11.x86_64 0:1.6.7-5.el7_9 will be installed +2026-03-12T12:31:06.7791031Z --> Processing Dependency: libX11-common >= 1.6.7-5.el7_9 for package: libX11-1.6.7-5.el7_9.x86_64 +2026-03-12T12:31:06.7800902Z --> Processing Dependency: libxcb.so.1()(64bit) for package: libX11-1.6.7-5.el7_9.x86_64 +2026-03-12T12:31:06.7818235Z ---> Package python3.x86_64 0:3.6.8-21.el7_9 will be installed +2026-03-12T12:31:06.7826412Z --> Processing Dependency: python3-libs(x86-64) = 3.6.8-21.el7_9 for package: python3-3.6.8-21.el7_9.x86_64 +2026-03-12T12:31:06.7847369Z --> Processing Dependency: libpython3.6m.so.1.0()(64bit) for package: python3-3.6.8-21.el7_9.x86_64 +2026-03-12T12:31:06.7848651Z ---> Package python3-setuptools.noarch 0:39.2.0-10.el7 will be installed +2026-03-12T12:31:06.7849524Z --> Running transaction check +2026-03-12T12:31:06.7852846Z ---> Package alsa-lib.x86_64 0:1.1.8-1.el7 will be installed +2026-03-12T12:31:06.7872515Z ---> Package copy-jdk-configs.noarch 0:3.3-11.el7_9 will be installed +2026-03-12T12:31:06.7879371Z ---> Package cups-libs.x86_64 1:1.6.3-52.el7_9 will be installed +2026-03-12T12:31:06.7905519Z --> Processing Dependency: libavahi-common.so.3()(64bit) for package: 1:cups-libs-1.6.3-52.el7_9.x86_64 +2026-03-12T12:31:06.7919984Z --> Processing Dependency: libavahi-client.so.3()(64bit) for package: 1:cups-libs-1.6.3-52.el7_9.x86_64 +2026-03-12T12:31:06.7921545Z ---> Package fontconfig.x86_64 0:2.13.0-4.3.el7 will be installed +2026-03-12T12:31:06.7931743Z --> Processing Dependency: fontpackages-filesystem for package: fontconfig-2.13.0-4.3.el7.x86_64 +2026-03-12T12:31:06.7939037Z --> Processing Dependency: dejavu-sans-fonts for package: fontconfig-2.13.0-4.3.el7.x86_64 +2026-03-12T12:31:06.7965588Z ---> Package freetype.x86_64 0:2.8-14.el7_9.1 will be installed +2026-03-12T12:31:06.7971464Z ---> Package giflib.x86_64 0:4.1.6-9.el7 will be installed +2026-03-12T12:31:06.7975655Z --> Processing Dependency: libSM.so.6()(64bit) for package: giflib-4.1.6-9.el7.x86_64 +2026-03-12T12:31:06.7989187Z --> Processing Dependency: libICE.so.6()(64bit) for package: giflib-4.1.6-9.el7.x86_64 +2026-03-12T12:31:06.8000655Z ---> Package gtk2.x86_64 0:2.24.31-1.el7 will be installed +2026-03-12T12:31:06.8020161Z --> Processing Dependency: pango >= 1.20.0-1 for package: gtk2-2.24.31-1.el7.x86_64 +2026-03-12T12:31:06.8044497Z --> Processing Dependency: libtiff >= 3.6.1 for package: gtk2-2.24.31-1.el7.x86_64 +2026-03-12T12:31:06.8064772Z --> Processing Dependency: libXrandr >= 1.2.99.4-2 for package: gtk2-2.24.31-1.el7.x86_64 +2026-03-12T12:31:06.8083752Z --> Processing Dependency: atk >= 1.29.4-2 for package: gtk2-2.24.31-1.el7.x86_64 +2026-03-12T12:31:06.8103345Z --> Processing Dependency: hicolor-icon-theme for package: gtk2-2.24.31-1.el7.x86_64 +2026-03-12T12:31:06.8110895Z --> Processing Dependency: gtk-update-icon-cache for package: gtk2-2.24.31-1.el7.x86_64 +2026-03-12T12:31:06.8127582Z --> Processing Dependency: libpangoft2-1.0.so.0()(64bit) for package: gtk2-2.24.31-1.el7.x86_64 +2026-03-12T12:31:06.8131638Z --> Processing Dependency: libpangocairo-1.0.so.0()(64bit) for package: gtk2-2.24.31-1.el7.x86_64 +2026-03-12T12:31:06.8132986Z --> Processing Dependency: libpango-1.0.so.0()(64bit) for package: gtk2-2.24.31-1.el7.x86_64 +2026-03-12T12:31:06.8133991Z --> Processing Dependency: libgdk_pixbuf-2.0.so.0()(64bit) for package: gtk2-2.24.31-1.el7.x86_64 +2026-03-12T12:31:06.8149679Z --> Processing Dependency: libcairo.so.2()(64bit) for package: gtk2-2.24.31-1.el7.x86_64 +2026-03-12T12:31:06.8164666Z --> Processing Dependency: libatk-1.0.so.0()(64bit) for package: gtk2-2.24.31-1.el7.x86_64 +2026-03-12T12:31:06.8168028Z --> Processing Dependency: libXrandr.so.2()(64bit) for package: gtk2-2.24.31-1.el7.x86_64 +2026-03-12T12:31:06.8171120Z --> Processing Dependency: libXinerama.so.1()(64bit) for package: gtk2-2.24.31-1.el7.x86_64 +2026-03-12T12:31:06.8183918Z --> Processing Dependency: libXfixes.so.3()(64bit) for package: gtk2-2.24.31-1.el7.x86_64 +2026-03-12T12:31:06.8196532Z --> Processing Dependency: libXdamage.so.1()(64bit) for package: gtk2-2.24.31-1.el7.x86_64 +2026-03-12T12:31:06.8208579Z --> Processing Dependency: libXcursor.so.1()(64bit) for package: gtk2-2.24.31-1.el7.x86_64 +2026-03-12T12:31:06.8220728Z ---> Package javapackages-tools.noarch 0:3.4.1-11.el7 will be installed +2026-03-12T12:31:06.8225917Z --> Processing Dependency: python-javapackages = 3.4.1-11.el7 for package: javapackages-tools-3.4.1-11.el7.noarch +2026-03-12T12:31:06.8233351Z --> Processing Dependency: libxslt for package: javapackages-tools-3.4.1-11.el7.noarch +2026-03-12T12:31:06.8264473Z ---> Package libX11-common.noarch 0:1.6.7-5.el7_9 will be installed +2026-03-12T12:31:06.8265430Z ---> Package libXcomposite.x86_64 0:0.4.4-4.1.el7 will be installed +2026-03-12T12:31:06.8269641Z ---> Package libXext.x86_64 0:1.3.3-3.el7 will be installed +2026-03-12T12:31:06.8273286Z ---> Package libXi.x86_64 0:1.7.9-1.el7 will be installed +2026-03-12T12:31:06.8276449Z ---> Package libXrender.x86_64 0:0.9.10-1.el7 will be installed +2026-03-12T12:31:06.8279540Z ---> Package libXtst.x86_64 0:1.2.3-1.el7 will be installed +2026-03-12T12:31:06.8284064Z ---> Package libjpeg-turbo.x86_64 0:1.2.90-8.el7 will be installed +2026-03-12T12:31:06.8285615Z ---> Package libpng.x86_64 2:1.5.13-8.el7 will be installed +2026-03-12T12:31:06.8288566Z ---> Package libxcb.x86_64 0:1.13-1.el7 will be installed +2026-03-12T12:31:06.8292402Z --> Processing Dependency: libXau.so.6()(64bit) for package: libxcb-1.13-1.el7.x86_64 +2026-03-12T12:31:06.8306172Z ---> Package lksctp-tools.x86_64 0:1.0.17-2.el7 will be installed +2026-03-12T12:31:06.8309707Z ---> Package pcsc-lite-libs.x86_64 0:1.8.8-8.el7 will be installed +2026-03-12T12:31:06.8312228Z ---> Package python3-libs.x86_64 0:3.6.8-21.el7_9 will be installed +2026-03-12T12:31:06.8348178Z --> Processing Dependency: libtirpc.so.1()(64bit) for package: python3-libs-3.6.8-21.el7_9.x86_64 +2026-03-12T12:31:06.8437796Z ---> Package tzdata-java.noarch 0:2024a-1.el7 will be installed +2026-03-12T12:31:06.8438760Z ---> Package xorg-x11-fonts-Type1.noarch 0:7.5-9.el7 will be installed +2026-03-12T12:31:06.8443434Z --> Processing Dependency: ttmkfdir for package: xorg-x11-fonts-Type1-7.5-9.el7.noarch +2026-03-12T12:31:06.8452637Z --> Processing Dependency: ttmkfdir for package: xorg-x11-fonts-Type1-7.5-9.el7.noarch +2026-03-12T12:31:06.8453741Z --> Processing Dependency: mkfontdir for package: xorg-x11-fonts-Type1-7.5-9.el7.noarch +2026-03-12T12:31:06.8463943Z --> Processing Dependency: mkfontdir for package: xorg-x11-fonts-Type1-7.5-9.el7.noarch +2026-03-12T12:31:06.8465979Z --> Running transaction check +2026-03-12T12:31:06.8467878Z ---> Package atk.x86_64 0:2.28.1-2.el7 will be installed +2026-03-12T12:31:06.8471030Z ---> Package avahi-libs.x86_64 0:0.6.31-20.el7 will be installed +2026-03-12T12:31:06.8479183Z ---> Package cairo.x86_64 0:1.15.12-4.el7 will be installed +2026-03-12T12:31:06.8488221Z --> Processing Dependency: libpixman-1.so.0()(64bit) for package: cairo-1.15.12-4.el7.x86_64 +2026-03-12T12:31:06.8501429Z --> Processing Dependency: libGL.so.1()(64bit) for package: cairo-1.15.12-4.el7.x86_64 +2026-03-12T12:31:06.8515368Z --> Processing Dependency: libEGL.so.1()(64bit) for package: cairo-1.15.12-4.el7.x86_64 +2026-03-12T12:31:06.8528834Z ---> Package dejavu-sans-fonts.noarch 0:2.33-6.el7 will be installed +2026-03-12T12:31:06.8532802Z --> Processing Dependency: dejavu-fonts-common = 2.33-6.el7 for package: dejavu-sans-fonts-2.33-6.el7.noarch +2026-03-12T12:31:06.8540710Z ---> Package fontpackages-filesystem.noarch 0:1.44-8.el7 will be installed +2026-03-12T12:31:06.8541700Z ---> Package gdk-pixbuf2.x86_64 0:2.36.12-3.el7 will be installed +2026-03-12T12:31:06.8552287Z --> Processing Dependency: libjasper.so.1()(64bit) for package: gdk-pixbuf2-2.36.12-3.el7.x86_64 +2026-03-12T12:31:06.8565570Z ---> Package gtk-update-icon-cache.x86_64 0:3.22.30-8.el7_9 will be installed +2026-03-12T12:31:06.8568406Z ---> Package hicolor-icon-theme.noarch 0:0.12-7.el7 will be installed +2026-03-12T12:31:06.8570683Z ---> Package libICE.x86_64 0:1.0.9-9.el7 will be installed +2026-03-12T12:31:06.8573052Z ---> Package libSM.x86_64 0:1.2.2-2.el7 will be installed +2026-03-12T12:31:06.8576300Z ---> Package libXau.x86_64 0:1.0.8-2.1.el7 will be installed +2026-03-12T12:31:06.8578882Z ---> Package libXcursor.x86_64 0:1.1.15-1.el7 will be installed +2026-03-12T12:31:06.8582476Z ---> Package libXdamage.x86_64 0:1.1.4-4.1.el7 will be installed +2026-03-12T12:31:06.8585561Z ---> Package libXfixes.x86_64 0:5.0.3-1.el7 will be installed +2026-03-12T12:31:06.8588500Z ---> Package libXinerama.x86_64 0:1.1.3-2.1.el7 will be installed +2026-03-12T12:31:06.8592078Z ---> Package libXrandr.x86_64 0:1.5.1-2.el7 will be installed +2026-03-12T12:31:06.8595532Z ---> Package libtiff.x86_64 0:4.0.3-35.el7 will be installed +2026-03-12T12:31:06.8601719Z --> Processing Dependency: libjbig.so.2.0()(64bit) for package: libtiff-4.0.3-35.el7.x86_64 +2026-03-12T12:31:06.8614609Z ---> Package libtirpc.x86_64 0:0.2.4-0.16.el7 will be installed +2026-03-12T12:31:06.8618577Z ---> Package libxslt.x86_64 0:1.1.28-6.el7 will be installed +2026-03-12T12:31:06.8642765Z ---> Package pango.x86_64 0:1.42.4-4.el7_7 will be installed +2026-03-12T12:31:06.8652172Z --> Processing Dependency: libthai(x86-64) >= 0.1.9 for package: pango-1.42.4-4.el7_7.x86_64 +2026-03-12T12:31:06.8665276Z --> Processing Dependency: libXft(x86-64) >= 2.0.0 for package: pango-1.42.4-4.el7_7.x86_64 +2026-03-12T12:31:06.8678020Z --> Processing Dependency: harfbuzz(x86-64) >= 1.4.2 for package: pango-1.42.4-4.el7_7.x86_64 +2026-03-12T12:31:06.8690614Z --> Processing Dependency: fribidi(x86-64) >= 1.0 for package: pango-1.42.4-4.el7_7.x86_64 +2026-03-12T12:31:06.8708590Z --> Processing Dependency: libthai.so.0(LIBTHAI_0.1)(64bit) for package: pango-1.42.4-4.el7_7.x86_64 +2026-03-12T12:31:06.8711605Z --> Processing Dependency: libthai.so.0()(64bit) for package: pango-1.42.4-4.el7_7.x86_64 +2026-03-12T12:31:06.8712746Z --> Processing Dependency: libharfbuzz.so.0()(64bit) for package: pango-1.42.4-4.el7_7.x86_64 +2026-03-12T12:31:06.8716542Z --> Processing Dependency: libfribidi.so.0()(64bit) for package: pango-1.42.4-4.el7_7.x86_64 +2026-03-12T12:31:06.8719259Z --> Processing Dependency: libXft.so.2()(64bit) for package: pango-1.42.4-4.el7_7.x86_64 +2026-03-12T12:31:06.8722928Z ---> Package python-javapackages.noarch 0:3.4.1-11.el7 will be installed +2026-03-12T12:31:06.8726239Z --> Processing Dependency: python-lxml for package: python-javapackages-3.4.1-11.el7.noarch +2026-03-12T12:31:06.8736239Z ---> Package ttmkfdir.x86_64 0:3.0.9-42.el7 will be installed +2026-03-12T12:31:06.8740803Z ---> Package xorg-x11-font-utils.x86_64 1:7.5-21.el7 will be installed +2026-03-12T12:31:06.8747372Z --> Processing Dependency: libfontenc.so.1()(64bit) for package: 1:xorg-x11-font-utils-7.5-21.el7.x86_64 +2026-03-12T12:31:06.8760187Z --> Running transaction check +2026-03-12T12:31:06.8762234Z ---> Package dejavu-fonts-common.noarch 0:2.33-6.el7 will be installed +2026-03-12T12:31:06.8764051Z ---> Package fribidi.x86_64 0:1.0.2-1.el7_7.1 will be installed +2026-03-12T12:31:06.8766270Z ---> Package harfbuzz.x86_64 0:1.7.5-2.el7 will be installed +2026-03-12T12:31:06.8770258Z --> Processing Dependency: libgraphite2.so.3()(64bit) for package: harfbuzz-1.7.5-2.el7.x86_64 +2026-03-12T12:31:06.8784107Z ---> Package jasper-libs.x86_64 0:1.900.1-33.el7 will be installed +2026-03-12T12:31:06.8787701Z ---> Package jbigkit-libs.x86_64 0:2.0-11.el7 will be installed +2026-03-12T12:31:06.8789717Z ---> Package libXft.x86_64 0:2.3.2-2.el7 will be installed +2026-03-12T12:31:06.8794257Z ---> Package libfontenc.x86_64 0:1.1.3-3.el7 will be installed +2026-03-12T12:31:06.8799714Z ---> Package libglvnd-egl.x86_64 1:1.0.1-0.8.git5baa1e5.el7 will be installed +2026-03-12T12:31:06.8805623Z --> Processing Dependency: libglvnd(x86-64) = 1:1.0.1-0.8.git5baa1e5.el7 for package: 1:libglvnd-egl-1.0.1-0.8.git5baa1e5.el7.x86_64 +2026-03-12T12:31:06.8819056Z --> Processing Dependency: mesa-libEGL(x86-64) >= 13.0.4-1 for package: 1:libglvnd-egl-1.0.1-0.8.git5baa1e5.el7.x86_64 +2026-03-12T12:31:06.8838366Z --> Processing Dependency: libGLdispatch.so.0()(64bit) for package: 1:libglvnd-egl-1.0.1-0.8.git5baa1e5.el7.x86_64 +2026-03-12T12:31:06.8841529Z ---> Package libglvnd-glx.x86_64 1:1.0.1-0.8.git5baa1e5.el7 will be installed +2026-03-12T12:31:06.8846627Z --> Processing Dependency: mesa-libGL(x86-64) >= 13.0.4-1 for package: 1:libglvnd-glx-1.0.1-0.8.git5baa1e5.el7.x86_64 +2026-03-12T12:31:06.8864944Z ---> Package libthai.x86_64 0:0.1.14-9.el7 will be installed +2026-03-12T12:31:06.8867433Z ---> Package pixman.x86_64 0:0.34.0-1.el7 will be installed +2026-03-12T12:31:06.8871131Z ---> Package python-lxml.x86_64 0:3.2.1-4.el7 will be installed +2026-03-12T12:31:06.8904986Z --> Running transaction check +2026-03-12T12:31:06.8905580Z ---> Package graphite2.x86_64 0:1.3.10-1.el7_3 will be installed +2026-03-12T12:31:06.8909288Z ---> Package libglvnd.x86_64 1:1.0.1-0.8.git5baa1e5.el7 will be installed +2026-03-12T12:31:06.8911706Z ---> Package mesa-libEGL.x86_64 0:18.3.4-12.el7_9 will be installed +2026-03-12T12:31:06.8922985Z --> Processing Dependency: mesa-libgbm = 18.3.4-12.el7_9 for package: mesa-libEGL-18.3.4-12.el7_9.x86_64 +2026-03-12T12:31:06.8946782Z --> Processing Dependency: libxshmfence.so.1()(64bit) for package: mesa-libEGL-18.3.4-12.el7_9.x86_64 +2026-03-12T12:31:06.8959130Z --> Processing Dependency: libwayland-server.so.0()(64bit) for package: mesa-libEGL-18.3.4-12.el7_9.x86_64 +2026-03-12T12:31:06.8971640Z --> Processing Dependency: libwayland-client.so.0()(64bit) for package: mesa-libEGL-18.3.4-12.el7_9.x86_64 +2026-03-12T12:31:06.8984106Z --> Processing Dependency: libglapi.so.0()(64bit) for package: mesa-libEGL-18.3.4-12.el7_9.x86_64 +2026-03-12T12:31:06.9001105Z --> Processing Dependency: libgbm.so.1()(64bit) for package: mesa-libEGL-18.3.4-12.el7_9.x86_64 +2026-03-12T12:31:06.9005041Z --> Processing Dependency: libdrm.so.2()(64bit) for package: mesa-libEGL-18.3.4-12.el7_9.x86_64 +2026-03-12T12:31:06.9017621Z ---> Package mesa-libGL.x86_64 0:18.3.4-12.el7_9 will be installed +2026-03-12T12:31:06.9028524Z --> Processing Dependency: libXxf86vm.so.1()(64bit) for package: mesa-libGL-18.3.4-12.el7_9.x86_64 +2026-03-12T12:31:06.9040263Z --> Running transaction check +2026-03-12T12:31:06.9041438Z ---> Package libXxf86vm.x86_64 0:1.1.4-1.el7 will be installed +2026-03-12T12:31:06.9045169Z ---> Package libdrm.x86_64 0:2.4.97-2.el7 will be installed +2026-03-12T12:31:06.9060582Z --> Processing Dependency: libpciaccess.so.0()(64bit) for package: libdrm-2.4.97-2.el7.x86_64 +2026-03-12T12:31:06.9073387Z ---> Package libwayland-client.x86_64 0:1.15.0-1.el7 will be installed +2026-03-12T12:31:06.9077142Z ---> Package libwayland-server.x86_64 0:1.15.0-1.el7 will be installed +2026-03-12T12:31:06.9080712Z ---> Package libxshmfence.x86_64 0:1.2-1.el7 will be installed +2026-03-12T12:31:06.9082816Z ---> Package mesa-libgbm.x86_64 0:18.3.4-12.el7_9 will be installed +2026-03-12T12:31:06.9087702Z ---> Package mesa-libglapi.x86_64 0:18.3.4-12.el7_9 will be installed +2026-03-12T12:31:06.9090547Z --> Running transaction check +2026-03-12T12:31:06.9091119Z ---> Package libpciaccess.x86_64 0:0.14-1.el7 will be installed +2026-03-12T12:31:06.9094845Z --> Processing Dependency: hwdata for package: libpciaccess-0.14-1.el7.x86_64 +2026-03-12T12:31:06.9102668Z --> Running transaction check +2026-03-12T12:31:06.9103680Z ---> Package hwdata.x86_64 0:0.252-9.7.el7 will be installed +2026-03-12T12:31:06.9248931Z --> Finished Dependency Resolution +2026-03-12T12:31:06.9431881Z +2026-03-12T12:31:06.9432240Z Dependencies Resolved +2026-03-12T12:31:06.9528268Z +2026-03-12T12:31:06.9528959Z ================================================================================ +2026-03-12T12:31:06.9529907Z Package Arch Version Repository +2026-03-12T12:31:06.9531117Z Size +2026-03-12T12:31:06.9531870Z ================================================================================ +2026-03-12T12:31:06.9532334Z Installing: +2026-03-12T12:31:06.9532772Z java-1.8.0-openjdk-devel x86_64 1:1.8.0.412.b08-1.el7_9 updates 9.9 M +2026-03-12T12:31:06.9533452Z python3-pip noarch 9.0.3-8.el7 base 1.6 M +2026-03-12T12:31:06.9534036Z wget x86_64 1.14-18.el7_6.1 base 547 k +2026-03-12T12:31:06.9534512Z Installing for dependencies: +2026-03-12T12:31:06.9534981Z alsa-lib x86_64 1.1.8-1.el7 base 425 k +2026-03-12T12:31:06.9535556Z atk x86_64 2.28.1-2.el7 base 263 k +2026-03-12T12:31:06.9536113Z avahi-libs x86_64 0.6.31-20.el7 base 62 k +2026-03-12T12:31:06.9536687Z cairo x86_64 1.15.12-4.el7 base 741 k +2026-03-12T12:31:06.9537292Z copy-jdk-configs noarch 3.3-11.el7_9 updates 22 k +2026-03-12T12:31:06.9537914Z cups-libs x86_64 1:1.6.3-52.el7_9 updates 359 k +2026-03-12T12:31:06.9538550Z dejavu-fonts-common noarch 2.33-6.el7 base 64 k +2026-03-12T12:31:06.9539232Z dejavu-sans-fonts noarch 2.33-6.el7 base 1.4 M +2026-03-12T12:31:06.9539863Z fontconfig x86_64 2.13.0-4.3.el7 base 254 k +2026-03-12T12:31:06.9540525Z fontpackages-filesystem noarch 1.44-8.el7 base 9.9 k +2026-03-12T12:31:06.9541180Z freetype x86_64 2.8-14.el7_9.1 updates 380 k +2026-03-12T12:31:06.9541911Z fribidi x86_64 1.0.2-1.el7_7.1 base 79 k +2026-03-12T12:31:06.9542335Z gdk-pixbuf2 x86_64 2.36.12-3.el7 base 570 k +2026-03-12T12:31:06.9542746Z giflib x86_64 4.1.6-9.el7 base 40 k +2026-03-12T12:31:06.9543485Z graphite2 x86_64 1.3.10-1.el7_3 base 115 k +2026-03-12T12:31:06.9544252Z gtk-update-icon-cache x86_64 3.22.30-8.el7_9 updates 27 k +2026-03-12T12:31:06.9545392Z gtk2 x86_64 2.24.31-1.el7 base 3.4 M +2026-03-12T12:31:06.9546040Z harfbuzz x86_64 1.7.5-2.el7 base 267 k +2026-03-12T12:31:06.9546487Z hicolor-icon-theme noarch 0.12-7.el7 base 42 k +2026-03-12T12:31:06.9546918Z hwdata x86_64 0.252-9.7.el7 base 2.5 M +2026-03-12T12:31:06.9547331Z jasper-libs x86_64 1.900.1-33.el7 base 150 k +2026-03-12T12:31:06.9547768Z java-1.8.0-openjdk x86_64 1:1.8.0.412.b08-1.el7_9 updates 325 k +2026-03-12T12:31:06.9548245Z java-1.8.0-openjdk-headless x86_64 1:1.8.0.412.b08-1.el7_9 updates 33 M +2026-03-12T12:31:06.9548737Z javapackages-tools noarch 3.4.1-11.el7 base 73 k +2026-03-12T12:31:06.9549182Z jbigkit-libs x86_64 2.0-11.el7 base 46 k +2026-03-12T12:31:06.9549595Z libICE x86_64 1.0.9-9.el7 base 66 k +2026-03-12T12:31:06.9550022Z libSM x86_64 1.2.2-2.el7 base 39 k +2026-03-12T12:31:06.9550408Z libX11 x86_64 1.6.7-5.el7_9 updates 607 k +2026-03-12T12:31:06.9550824Z libX11-common noarch 1.6.7-5.el7_9 updates 165 k +2026-03-12T12:31:06.9551347Z libXau x86_64 1.0.8-2.1.el7 base 29 k +2026-03-12T12:31:06.9551763Z libXcomposite x86_64 0.4.4-4.1.el7 base 22 k +2026-03-12T12:31:06.9552183Z libXcursor x86_64 1.1.15-1.el7 base 30 k +2026-03-12T12:31:06.9552771Z libXdamage x86_64 1.1.4-4.1.el7 base 20 k +2026-03-12T12:31:06.9553173Z libXext x86_64 1.3.3-3.el7 base 39 k +2026-03-12T12:31:06.9553576Z libXfixes x86_64 5.0.3-1.el7 base 18 k +2026-03-12T12:31:06.9553973Z libXft x86_64 2.3.2-2.el7 base 58 k +2026-03-12T12:31:06.9554353Z libXi x86_64 1.7.9-1.el7 base 40 k +2026-03-12T12:31:06.9554754Z libXinerama x86_64 1.1.3-2.1.el7 base 14 k +2026-03-12T12:31:06.9555160Z libXrandr x86_64 1.5.1-2.el7 base 27 k +2026-03-12T12:31:06.9555587Z libXrender x86_64 0.9.10-1.el7 base 26 k +2026-03-12T12:31:06.9555990Z libXtst x86_64 1.2.3-1.el7 base 20 k +2026-03-12T12:31:06.9556382Z libXxf86vm x86_64 1.1.4-1.el7 base 18 k +2026-03-12T12:31:06.9556748Z libdrm x86_64 2.4.97-2.el7 base 151 k +2026-03-12T12:31:06.9557113Z libfontenc x86_64 1.1.3-3.el7 base 31 k +2026-03-12T12:31:06.9557493Z libglvnd x86_64 1:1.0.1-0.8.git5baa1e5.el7 base 89 k +2026-03-12T12:31:06.9557874Z libglvnd-egl x86_64 1:1.0.1-0.8.git5baa1e5.el7 base 44 k +2026-03-12T12:31:06.9558266Z libglvnd-glx x86_64 1:1.0.1-0.8.git5baa1e5.el7 base 125 k +2026-03-12T12:31:06.9558662Z libjpeg-turbo x86_64 1.2.90-8.el7 base 135 k +2026-03-12T12:31:06.9559173Z libpciaccess x86_64 0.14-1.el7 base 26 k +2026-03-12T12:31:06.9559551Z libpng x86_64 2:1.5.13-8.el7 base 213 k +2026-03-12T12:31:06.9559914Z libthai x86_64 0.1.14-9.el7 base 187 k +2026-03-12T12:31:06.9560271Z libtiff x86_64 4.0.3-35.el7 base 172 k +2026-03-12T12:31:06.9560635Z libtirpc x86_64 0.2.4-0.16.el7 base 89 k +2026-03-12T12:31:06.9561025Z libwayland-client x86_64 1.15.0-1.el7 base 33 k +2026-03-12T12:31:06.9561588Z libwayland-server x86_64 1.15.0-1.el7 base 39 k +2026-03-12T12:31:06.9561982Z libxcb x86_64 1.13-1.el7 base 214 k +2026-03-12T12:31:06.9562356Z libxshmfence x86_64 1.2-1.el7 base 7.2 k +2026-03-12T12:31:06.9562732Z libxslt x86_64 1.1.28-6.el7 base 242 k +2026-03-12T12:31:06.9563111Z lksctp-tools x86_64 1.0.17-2.el7 base 88 k +2026-03-12T12:31:06.9563498Z mesa-libEGL x86_64 18.3.4-12.el7_9 updates 110 k +2026-03-12T12:31:06.9563877Z mesa-libGL x86_64 18.3.4-12.el7_9 updates 166 k +2026-03-12T12:31:06.9564254Z mesa-libgbm x86_64 18.3.4-12.el7_9 updates 39 k +2026-03-12T12:31:06.9564649Z mesa-libglapi x86_64 18.3.4-12.el7_9 updates 46 k +2026-03-12T12:31:06.9565052Z pango x86_64 1.42.4-4.el7_7 base 280 k +2026-03-12T12:31:06.9565436Z pcsc-lite-libs x86_64 1.8.8-8.el7 base 34 k +2026-03-12T12:31:06.9565831Z pixman x86_64 0.34.0-1.el7 base 248 k +2026-03-12T12:31:06.9566237Z python-javapackages noarch 3.4.1-11.el7 base 31 k +2026-03-12T12:31:06.9566659Z python-lxml x86_64 3.2.1-4.el7 base 758 k +2026-03-12T12:31:06.9567034Z python3 x86_64 3.6.8-21.el7_9 updates 71 k +2026-03-12T12:31:06.9567543Z python3-libs x86_64 3.6.8-21.el7_9 updates 7.0 M +2026-03-12T12:31:06.9567955Z python3-setuptools noarch 39.2.0-10.el7 base 629 k +2026-03-12T12:31:06.9568356Z ttmkfdir x86_64 3.0.9-42.el7 base 48 k +2026-03-12T12:31:06.9568741Z tzdata-java noarch 2024a-1.el7 updates 187 k +2026-03-12T12:31:06.9569155Z xorg-x11-font-utils x86_64 1:7.5-21.el7 base 104 k +2026-03-12T12:31:06.9569864Z xorg-x11-fonts-Type1 noarch 7.5-9.el7 base 521 k +2026-03-12T12:31:06.9570307Z +2026-03-12T12:31:06.9570390Z Transaction Summary +2026-03-12T12:31:06.9570621Z ================================================================================ +2026-03-12T12:31:06.9570947Z Install 3 Packages (+75 Dependent packages) +2026-03-12T12:31:06.9571136Z +2026-03-12T12:31:06.9571357Z Total download size: 70 M +2026-03-12T12:31:06.9571578Z Installed size: 261 M +2026-03-12T12:31:06.9571770Z Downloading packages: +2026-03-12T12:31:10.7472543Z -------------------------------------------------------------------------------- +2026-03-12T12:31:10.7473093Z Total 18 MB/s | 70 MB 00:03 +2026-03-12T12:31:10.7972198Z Running transaction check +2026-03-12T12:31:10.8217207Z Running transaction test +2026-03-12T12:31:10.8787903Z Transaction test succeeded +2026-03-12T12:31:10.8792064Z Running transaction +2026-03-12T12:31:10.9843162Z Installing : libjpeg-turbo-1.2.90-8.el7.x86_64 1/78 +2026-03-12T12:31:11.0386919Z Installing : 2:libpng-1.5.13-8.el7.x86_64 2/78 +2026-03-12T12:31:11.0702363Z Installing : freetype-2.8-14.el7_9.1.x86_64 3/78 +2026-03-12T12:31:11.0969973Z Installing : mesa-libglapi-18.3.4-12.el7_9.x86_64 4/78 +2026-03-12T12:31:11.1275444Z Installing : libxshmfence-1.2-1.el7.x86_64 5/78 +2026-03-12T12:31:11.1729444Z Installing : libICE-1.0.9-9.el7.x86_64 6/78 +2026-03-12T12:31:11.2115736Z Installing : libxslt-1.1.28-6.el7.x86_64 7/78 +2026-03-12T12:31:11.2386168Z Installing : 1:libglvnd-1.0.1-0.8.git5baa1e5.el7.x86_64 8/78 +2026-03-12T12:31:11.2448167Z Installing : fontpackages-filesystem-1.44-8.el7.noarch 9/78 +2026-03-12T12:31:11.2749813Z Installing : libwayland-server-1.15.0-1.el7.x86_64 10/78 +2026-03-12T12:31:11.4079310Z Installing : dejavu-fonts-common-2.33-6.el7.noarch 11/78 +2026-03-12T12:31:11.4579492Z Installing : dejavu-sans-fonts-2.33-6.el7.noarch 12/78 +2026-03-12T12:31:12.5797332Z Installing : fontconfig-2.13.0-4.3.el7.x86_64 13/78 +2026-03-12T12:31:12.5883903Z Installing : python-lxml-3.2.1-4.el7.x86_64 14/78 +2026-03-12T12:31:12.6032448Z Installing : python-javapackages-3.4.1-11.el7.noarch 15/78 +2026-03-12T12:31:12.6102040Z Installing : javapackages-tools-3.4.1-11.el7.noarch 16/78 +2026-03-12T12:31:12.6404556Z Installing : libSM-1.2.2-2.el7.x86_64 17/78 +2026-03-12T12:31:12.6554513Z Installing : ttmkfdir-3.0.9-42.el7.x86_64 18/78 +2026-03-12T12:31:12.6870210Z Installing : jasper-libs-1.900.1-33.el7.x86_64 19/78 +2026-03-12T12:31:12.7356070Z Installing : avahi-libs-0.6.31-20.el7.x86_64 20/78 +2026-03-12T12:31:12.7630320Z Installing : 1:cups-libs-1.6.3-52.el7_9.x86_64 21/78 +2026-03-12T12:31:12.7725724Z Installing : copy-jdk-configs-3.3-11.el7_9.noarch 22/78 +2026-03-12T12:31:12.8124239Z Installing : libfontenc-1.1.3-3.el7.x86_64 23/78 +2026-03-12T12:31:12.8563147Z Installing : 1:xorg-x11-font-utils-7.5-21.el7.x86_64 24/78 +2026-03-12T12:31:12.9447195Z Installing : xorg-x11-fonts-Type1-7.5-9.el7.noarch 25/78 +2026-03-12T12:31:12.9897923Z Installing : atk-2.28.1-2.el7.x86_64 26/78 +2026-03-12T12:31:13.0737455Z Installing : libthai-0.1.14-9.el7.x86_64 27/78 +2026-03-12T12:31:13.0812698Z Installing : tzdata-java-2024a-1.el7.noarch 28/78 +2026-03-12T12:31:13.1389951Z Installing : libXau-1.0.8-2.1.el7.x86_64 29/78 +2026-03-12T12:31:13.1736239Z Installing : libxcb-1.13-1.el7.x86_64 30/78 +2026-03-12T12:31:13.2152902Z Installing : jbigkit-libs-2.0-11.el7.x86_64 31/78 +2026-03-12T12:31:13.2456306Z Installing : libtiff-4.0.3-35.el7.x86_64 32/78 +2026-03-12T12:31:13.2930290Z Installing : pcsc-lite-libs-1.8.8-8.el7.x86_64 33/78 +2026-03-12T12:31:13.3675310Z Installing : pixman-0.34.0-1.el7.x86_64 34/78 +2026-03-12T12:31:13.4187330Z Installing : libX11-common-1.6.7-5.el7_9.noarch 35/78 +2026-03-12T12:31:13.4491760Z Installing : libX11-1.6.7-5.el7_9.x86_64 36/78 +2026-03-12T12:31:13.4781091Z Installing : libXext-1.3.3-3.el7.x86_64 37/78 +2026-03-12T12:31:13.5066112Z Installing : libXrender-0.9.10-1.el7.x86_64 38/78 +2026-03-12T12:31:13.5364389Z Installing : libXfixes-5.0.3-1.el7.x86_64 39/78 +2026-03-12T12:31:13.5653956Z Installing : libXi-1.7.9-1.el7.x86_64 40/78 +2026-03-12T12:31:13.6432929Z Installing : libXdamage-1.1.4-4.1.el7.x86_64 41/78 +2026-03-12T12:31:13.6836726Z Installing : gdk-pixbuf2-2.36.12-3.el7.x86_64 42/78 +2026-03-12T12:31:13.7137063Z Installing : libXcomposite-0.4.4-4.1.el7.x86_64 43/78 +2026-03-12T12:31:13.7182822Z Installing : gtk-update-icon-cache-3.22.30-8.el7_9.x86_64 44/78 +2026-03-12T12:31:13.7498290Z Installing : libXtst-1.2.3-1.el7.x86_64 45/78 +2026-03-12T12:31:13.7815952Z Installing : libXcursor-1.1.15-1.el7.x86_64 46/78 +2026-03-12T12:31:13.8111794Z Installing : libXft-2.3.2-2.el7.x86_64 47/78 +2026-03-12T12:31:13.8390706Z Installing : libXrandr-1.5.1-2.el7.x86_64 48/78 +2026-03-12T12:31:13.8674768Z Installing : libXinerama-1.1.3-2.1.el7.x86_64 49/78 +2026-03-12T12:31:13.8989617Z Installing : libXxf86vm-1.1.4-1.el7.x86_64 50/78 +2026-03-12T12:31:13.9348221Z Installing : giflib-4.1.6-9.el7.x86_64 51/78 +2026-03-12T12:31:16.8164983Z Installing : lksctp-tools-1.0.17-2.el7.x86_64 52/78 +2026-03-12T12:31:17.0726563Z Installing : 1:java-1.8.0-openjdk-headless-1.8.0.412.b08-1.el7_9.x86_ 53/78 +2026-03-12T12:31:17.1058887Z Installing : fribidi-1.0.2-1.el7_7.1.x86_64 54/78 +2026-03-12T12:31:17.1809357Z Installing : libwayland-client-1.15.0-1.el7.x86_64 55/78 +2026-03-12T12:31:17.2424237Z Installing : alsa-lib-1.1.8-1.el7.x86_64 56/78 +2026-03-12T12:31:17.2805950Z Installing : hicolor-icon-theme-0.12-7.el7.noarch 57/78 +2026-03-12T12:31:17.3314312Z Installing : graphite2-1.3.10-1.el7_3.x86_64 58/78 +2026-03-12T12:31:17.6187397Z Installing : harfbuzz-1.7.5-2.el7.x86_64 59/78 +2026-03-12T12:31:17.8896616Z Installing : hwdata-0.252-9.7.el7.x86_64 60/78 +2026-03-12T12:31:17.9327371Z Installing : libpciaccess-0.14-1.el7.x86_64 61/78 +2026-03-12T12:31:17.9751145Z Installing : libdrm-2.4.97-2.el7.x86_64 62/78 +2026-03-12T12:31:18.0170666Z Installing : mesa-libGL-18.3.4-12.el7_9.x86_64 63/78 +2026-03-12T12:31:18.0485514Z Installing : 1:libglvnd-glx-1.0.1-0.8.git5baa1e5.el7.x86_64 64/78 +2026-03-12T12:31:18.0809653Z Installing : mesa-libgbm-18.3.4-12.el7_9.x86_64 65/78 +2026-03-12T12:31:18.1186778Z Installing : 1:libglvnd-egl-1.0.1-0.8.git5baa1e5.el7.x86_64 66/78 +2026-03-12T12:31:18.2034195Z Installing : mesa-libEGL-18.3.4-12.el7_9.x86_64 67/78 +2026-03-12T12:31:18.2559380Z Installing : cairo-1.15.12-4.el7.x86_64 68/78 +2026-03-12T12:31:18.5747722Z Installing : pango-1.42.4-4.el7_7.x86_64 69/78 +2026-03-12T12:31:18.6340939Z Installing : gtk2-2.24.31-1.el7.x86_64 70/78 +2026-03-12T12:31:18.6660013Z Installing : 1:java-1.8.0-openjdk-1.8.0.412.b08-1.el7_9.x86_64 71/78 +2026-03-12T12:31:18.9702634Z Installing : libtirpc-0.2.4-0.16.el7.x86_64 72/78 +2026-03-12T12:31:19.0744394Z Installing : python3-pip-9.0.3-8.el7.noarch 73/78 +2026-03-12T12:31:19.0833384Z Installing : python3-setuptools-39.2.0-10.el7.noarch 74/78 +2026-03-12T12:31:20.0952940Z Installing : python3-3.6.8-21.el7_9.x86_64 75/78 +2026-03-12T12:31:21.0172266Z Installing : python3-libs-3.6.8-21.el7_9.x86_64 76/78 +2026-03-12T12:31:21.0941448Z Installing : 1:java-1.8.0-openjdk-devel-1.8.0.412.b08-1.el7_9.x86_64 77/78 +2026-03-12T12:31:21.1167011Z Installing : wget-1.14-18.el7_6.1.x86_64 78/78 +2026-03-12T12:31:21.1167635Z install-info: No such file or directory for /usr/share/info/wget.info.gz +2026-03-12T12:31:21.2647029Z Verifying : libXext-1.3.3-3.el7.x86_64 1/78 +2026-03-12T12:31:21.2692818Z Verifying : libtirpc-0.2.4-0.16.el7.x86_64 2/78 +2026-03-12T12:31:21.2732607Z Verifying : libXi-1.7.9-1.el7.x86_64 3/78 +2026-03-12T12:31:21.2772909Z Verifying : gtk-update-icon-cache-3.22.30-8.el7_9.x86_64 4/78 +2026-03-12T12:31:21.2818471Z Verifying : python3-3.6.8-21.el7_9.x86_64 5/78 +2026-03-12T12:31:21.2901084Z Verifying : giflib-4.1.6-9.el7.x86_64 6/78 +2026-03-12T12:31:21.2942357Z Verifying : libpciaccess-0.14-1.el7.x86_64 7/78 +2026-03-12T12:31:21.2981160Z Verifying : libXinerama-1.1.3-2.1.el7.x86_64 8/78 +2026-03-12T12:31:21.3020554Z Verifying : libXrender-0.9.10-1.el7.x86_64 9/78 +2026-03-12T12:31:21.3066161Z Verifying : hwdata-0.252-9.7.el7.x86_64 10/78 +2026-03-12T12:31:21.3118901Z Verifying : 1:java-1.8.0-openjdk-devel-1.8.0.412.b08-1.el7_9.x86_64 11/78 +2026-03-12T12:31:21.3165495Z Verifying : 1:xorg-x11-font-utils-7.5-21.el7.x86_64 12/78 +2026-03-12T12:31:21.3203047Z Verifying : libXxf86vm-1.1.4-1.el7.x86_64 13/78 +2026-03-12T12:31:21.3243181Z Verifying : graphite2-1.3.10-1.el7_3.x86_64 14/78 +2026-03-12T12:31:21.3282250Z Verifying : libwayland-server-1.15.0-1.el7.x86_64 15/78 +2026-03-12T12:31:21.3323415Z Verifying : libXcursor-1.1.15-1.el7.x86_64 16/78 +2026-03-12T12:31:21.3369173Z Verifying : python3-pip-9.0.3-8.el7.noarch 17/78 +2026-03-12T12:31:21.3414549Z Verifying : fontconfig-2.13.0-4.3.el7.x86_64 18/78 +2026-03-12T12:31:21.3452517Z Verifying : gtk2-2.24.31-1.el7.x86_64 19/78 +2026-03-12T12:31:21.3492838Z Verifying : ttmkfdir-3.0.9-42.el7.x86_64 20/78 +2026-03-12T12:31:21.3539297Z Verifying : 1:java-1.8.0-openjdk-1.8.0.412.b08-1.el7_9.x86_64 21/78 +2026-03-12T12:31:21.3580165Z Verifying : hicolor-icon-theme-0.12-7.el7.noarch 22/78 +2026-03-12T12:31:21.3623578Z Verifying : alsa-lib-1.1.8-1.el7.x86_64 23/78 +2026-03-12T12:31:21.3667540Z Verifying : libwayland-client-1.15.0-1.el7.x86_64 24/78 +2026-03-12T12:31:21.3709400Z Verifying : gdk-pixbuf2-2.36.12-3.el7.x86_64 25/78 +2026-03-12T12:31:21.3759253Z Verifying : 1:java-1.8.0-openjdk-headless-1.8.0.412.b08-1.el7_9.x86_ 26/78 +2026-03-12T12:31:21.3798393Z Verifying : libXcomposite-0.4.4-4.1.el7.x86_64 27/78 +2026-03-12T12:31:21.3838958Z Verifying : fontpackages-filesystem-1.44-8.el7.noarch 28/78 +2026-03-12T12:31:21.3881022Z Verifying : libtiff-4.0.3-35.el7.x86_64 29/78 +2026-03-12T12:31:21.3918831Z Verifying : python-javapackages-3.4.1-11.el7.noarch 30/78 +2026-03-12T12:31:21.3977796Z Verifying : dejavu-fonts-common-2.33-6.el7.noarch 31/78 +2026-03-12T12:31:21.4020085Z Verifying : libX11-1.6.7-5.el7_9.x86_64 32/78 +2026-03-12T12:31:21.4062241Z Verifying : fribidi-1.0.2-1.el7_7.1.x86_64 33/78 +2026-03-12T12:31:21.4111405Z Verifying : libXtst-1.2.3-1.el7.x86_64 34/78 +2026-03-12T12:31:21.4159711Z Verifying : python3-libs-3.6.8-21.el7_9.x86_64 35/78 +2026-03-12T12:31:21.4199207Z Verifying : 1:libglvnd-1.0.1-0.8.git5baa1e5.el7.x86_64 36/78 +2026-03-12T12:31:21.4239337Z Verifying : libxcb-1.13-1.el7.x86_64 37/78 +2026-03-12T12:31:21.4281493Z Verifying : libXft-2.3.2-2.el7.x86_64 38/78 +2026-03-12T12:31:21.4319305Z Verifying : libdrm-2.4.97-2.el7.x86_64 39/78 +2026-03-12T12:31:21.4362176Z Verifying : mesa-libGL-18.3.4-12.el7_9.x86_64 40/78 +2026-03-12T12:31:21.4398207Z Verifying : lksctp-tools-1.0.17-2.el7.x86_64 41/78 +2026-03-12T12:31:21.4439006Z Verifying : pango-1.42.4-4.el7_7.x86_64 42/78 +2026-03-12T12:31:21.4482926Z Verifying : libxslt-1.1.28-6.el7.x86_64 43/78 +2026-03-12T12:31:21.4522698Z Verifying : libX11-common-1.6.7-5.el7_9.noarch 44/78 +2026-03-12T12:31:21.4563049Z Verifying : libjpeg-turbo-1.2.90-8.el7.x86_64 45/78 +2026-03-12T12:31:21.4603333Z Verifying : pixman-0.34.0-1.el7.x86_64 46/78 +2026-03-12T12:31:21.4653261Z Verifying : 1:cups-libs-1.6.3-52.el7_9.x86_64 47/78 +2026-03-12T12:31:21.4692858Z Verifying : xorg-x11-fonts-Type1-7.5-9.el7.noarch 48/78 +2026-03-12T12:31:21.4734236Z Verifying : harfbuzz-1.7.5-2.el7.x86_64 49/78 +2026-03-12T12:31:21.4772851Z Verifying : libXfixes-5.0.3-1.el7.x86_64 50/78 +2026-03-12T12:31:21.4816354Z Verifying : mesa-libglapi-18.3.4-12.el7_9.x86_64 51/78 +2026-03-12T12:31:21.4855139Z Verifying : 1:libglvnd-glx-1.0.1-0.8.git5baa1e5.el7.x86_64 52/78 +2026-03-12T12:31:21.4899979Z Verifying : dejavu-sans-fonts-2.33-6.el7.noarch 53/78 +2026-03-12T12:31:21.4939729Z Verifying : libICE-1.0.9-9.el7.x86_64 54/78 +2026-03-12T12:31:21.4980745Z Verifying : libXrandr-1.5.1-2.el7.x86_64 55/78 +2026-03-12T12:31:21.5019323Z Verifying : 2:libpng-1.5.13-8.el7.x86_64 56/78 +2026-03-12T12:31:21.5098969Z Verifying : pcsc-lite-libs-1.8.8-8.el7.x86_64 57/78 +2026-03-12T12:31:21.5145845Z Verifying : python3-setuptools-39.2.0-10.el7.noarch 58/78 +2026-03-12T12:31:21.5188567Z Verifying : javapackages-tools-3.4.1-11.el7.noarch 59/78 +2026-03-12T12:31:21.5231129Z Verifying : jbigkit-libs-2.0-11.el7.x86_64 60/78 +2026-03-12T12:31:21.5273922Z Verifying : cairo-1.15.12-4.el7.x86_64 61/78 +2026-03-12T12:31:21.5314972Z Verifying : mesa-libgbm-18.3.4-12.el7_9.x86_64 62/78 +2026-03-12T12:31:21.5352400Z Verifying : libxshmfence-1.2-1.el7.x86_64 63/78 +2026-03-12T12:31:21.5394797Z Verifying : libXau-1.0.8-2.1.el7.x86_64 64/78 +2026-03-12T12:31:21.5439104Z Verifying : libSM-1.2.2-2.el7.x86_64 65/78 +2026-03-12T12:31:21.5490250Z Verifying : tzdata-java-2024a-1.el7.noarch 66/78 +2026-03-12T12:31:21.5533428Z Verifying : jasper-libs-1.900.1-33.el7.x86_64 67/78 +2026-03-12T12:31:21.5580989Z Verifying : python-lxml-3.2.1-4.el7.x86_64 68/78 +2026-03-12T12:31:21.5629273Z Verifying : mesa-libEGL-18.3.4-12.el7_9.x86_64 69/78 +2026-03-12T12:31:21.5667462Z Verifying : libthai-0.1.14-9.el7.x86_64 70/78 +2026-03-12T12:31:21.5705211Z Verifying : libXdamage-1.1.4-4.1.el7.x86_64 71/78 +2026-03-12T12:31:21.5747726Z Verifying : wget-1.14-18.el7_6.1.x86_64 72/78 +2026-03-12T12:31:21.5788772Z Verifying : atk-2.28.1-2.el7.x86_64 73/78 +2026-03-12T12:31:21.5828486Z Verifying : libfontenc-1.1.3-3.el7.x86_64 74/78 +2026-03-12T12:31:21.5869176Z Verifying : freetype-2.8-14.el7_9.1.x86_64 75/78 +2026-03-12T12:31:21.5910594Z Verifying : copy-jdk-configs-3.3-11.el7_9.noarch 76/78 +2026-03-12T12:31:21.5953137Z Verifying : 1:libglvnd-egl-1.0.1-0.8.git5baa1e5.el7.x86_64 77/78 +2026-03-12T12:31:21.6212542Z Verifying : avahi-libs-0.6.31-20.el7.x86_64 78/78 +2026-03-12T12:31:21.6213269Z +2026-03-12T12:31:21.6213459Z Installed: +2026-03-12T12:31:21.6214021Z java-1.8.0-openjdk-devel.x86_64 1:1.8.0.412.b08-1.el7_9 +2026-03-12T12:31:21.6214935Z python3-pip.noarch 0:9.0.3-8.el7 +2026-03-12T12:31:21.6215723Z wget.x86_64 0:1.14-18.el7_6.1 +2026-03-12T12:31:21.6216027Z +2026-03-12T12:31:21.6216128Z Dependency Installed: +2026-03-12T12:31:21.6216491Z alsa-lib.x86_64 0:1.1.8-1.el7 +2026-03-12T12:31:21.6216969Z atk.x86_64 0:2.28.1-2.el7 +2026-03-12T12:31:21.6217464Z avahi-libs.x86_64 0:0.6.31-20.el7 +2026-03-12T12:31:21.6217952Z cairo.x86_64 0:1.15.12-4.el7 +2026-03-12T12:31:21.6218471Z copy-jdk-configs.noarch 0:3.3-11.el7_9 +2026-03-12T12:31:21.6219003Z cups-libs.x86_64 1:1.6.3-52.el7_9 +2026-03-12T12:31:21.6219555Z dejavu-fonts-common.noarch 0:2.33-6.el7 +2026-03-12T12:31:21.6220125Z dejavu-sans-fonts.noarch 0:2.33-6.el7 +2026-03-12T12:31:21.6220656Z fontconfig.x86_64 0:2.13.0-4.3.el7 +2026-03-12T12:31:21.6221509Z fontpackages-filesystem.noarch 0:1.44-8.el7 +2026-03-12T12:31:21.6222068Z freetype.x86_64 0:2.8-14.el7_9.1 +2026-03-12T12:31:21.6222839Z fribidi.x86_64 0:1.0.2-1.el7_7.1 +2026-03-12T12:31:21.6223333Z gdk-pixbuf2.x86_64 0:2.36.12-3.el7 +2026-03-12T12:31:21.6223832Z giflib.x86_64 0:4.1.6-9.el7 +2026-03-12T12:31:21.6224276Z graphite2.x86_64 0:1.3.10-1.el7_3 +2026-03-12T12:31:21.6224726Z gtk-update-icon-cache.x86_64 0:3.22.30-8.el7_9 +2026-03-12T12:31:21.6225152Z gtk2.x86_64 0:2.24.31-1.el7 +2026-03-12T12:31:21.6225538Z harfbuzz.x86_64 0:1.7.5-2.el7 +2026-03-12T12:31:21.6225968Z hicolor-icon-theme.noarch 0:0.12-7.el7 +2026-03-12T12:31:21.6226382Z hwdata.x86_64 0:0.252-9.7.el7 +2026-03-12T12:31:21.6226783Z jasper-libs.x86_64 0:1.900.1-33.el7 +2026-03-12T12:31:21.6227203Z java-1.8.0-openjdk.x86_64 1:1.8.0.412.b08-1.el7_9 +2026-03-12T12:31:21.6227642Z java-1.8.0-openjdk-headless.x86_64 1:1.8.0.412.b08-1.el7_9 +2026-03-12T12:31:21.6228096Z javapackages-tools.noarch 0:3.4.1-11.el7 +2026-03-12T12:31:21.6228555Z jbigkit-libs.x86_64 0:2.0-11.el7 +2026-03-12T12:31:21.6228946Z libICE.x86_64 0:1.0.9-9.el7 +2026-03-12T12:31:21.6229319Z libSM.x86_64 0:1.2.2-2.el7 +2026-03-12T12:31:21.6229687Z libX11.x86_64 0:1.6.7-5.el7_9 +2026-03-12T12:31:21.6230228Z libX11-common.noarch 0:1.6.7-5.el7_9 +2026-03-12T12:31:21.6230639Z libXau.x86_64 0:1.0.8-2.1.el7 +2026-03-12T12:31:21.6231043Z libXcomposite.x86_64 0:0.4.4-4.1.el7 +2026-03-12T12:31:21.6231580Z libXcursor.x86_64 0:1.1.15-1.el7 +2026-03-12T12:31:21.6231978Z libXdamage.x86_64 0:1.1.4-4.1.el7 +2026-03-12T12:31:21.6232368Z libXext.x86_64 0:1.3.3-3.el7 +2026-03-12T12:31:21.6232749Z libXfixes.x86_64 0:5.0.3-1.el7 +2026-03-12T12:31:21.6233135Z libXft.x86_64 0:2.3.2-2.el7 +2026-03-12T12:31:21.6233511Z libXi.x86_64 0:1.7.9-1.el7 +2026-03-12T12:31:21.6233931Z libXinerama.x86_64 0:1.1.3-2.1.el7 +2026-03-12T12:31:21.6234342Z libXrandr.x86_64 0:1.5.1-2.el7 +2026-03-12T12:31:21.6234743Z libXrender.x86_64 0:0.9.10-1.el7 +2026-03-12T12:31:21.6235138Z libXtst.x86_64 0:1.2.3-1.el7 +2026-03-12T12:31:21.6235530Z libXxf86vm.x86_64 0:1.1.4-1.el7 +2026-03-12T12:31:21.6235916Z libdrm.x86_64 0:2.4.97-2.el7 +2026-03-12T12:31:21.6236306Z libfontenc.x86_64 0:1.1.3-3.el7 +2026-03-12T12:31:21.6236717Z libglvnd.x86_64 1:1.0.1-0.8.git5baa1e5.el7 +2026-03-12T12:31:21.6237142Z libglvnd-egl.x86_64 1:1.0.1-0.8.git5baa1e5.el7 +2026-03-12T12:31:21.6237571Z libglvnd-glx.x86_64 1:1.0.1-0.8.git5baa1e5.el7 +2026-03-12T12:31:21.6237994Z libjpeg-turbo.x86_64 0:1.2.90-8.el7 +2026-03-12T12:31:21.6238538Z libpciaccess.x86_64 0:0.14-1.el7 +2026-03-12T12:31:21.6238933Z libpng.x86_64 2:1.5.13-8.el7 +2026-03-12T12:31:21.6239320Z libthai.x86_64 0:0.1.14-9.el7 +2026-03-12T12:31:21.6239710Z libtiff.x86_64 0:4.0.3-35.el7 +2026-03-12T12:31:21.6240100Z libtirpc.x86_64 0:0.2.4-0.16.el7 +2026-03-12T12:31:21.6240516Z libwayland-client.x86_64 0:1.15.0-1.el7 +2026-03-12T12:31:21.6240952Z libwayland-server.x86_64 0:1.15.0-1.el7 +2026-03-12T12:31:21.6241462Z libxcb.x86_64 0:1.13-1.el7 +2026-03-12T12:31:21.6241854Z libxshmfence.x86_64 0:1.2-1.el7 +2026-03-12T12:31:21.6242249Z libxslt.x86_64 0:1.1.28-6.el7 +2026-03-12T12:31:21.6242657Z lksctp-tools.x86_64 0:1.0.17-2.el7 +2026-03-12T12:31:21.6243085Z mesa-libEGL.x86_64 0:18.3.4-12.el7_9 +2026-03-12T12:31:21.6243504Z mesa-libGL.x86_64 0:18.3.4-12.el7_9 +2026-03-12T12:31:21.6243906Z mesa-libgbm.x86_64 0:18.3.4-12.el7_9 +2026-03-12T12:31:21.6244319Z mesa-libglapi.x86_64 0:18.3.4-12.el7_9 +2026-03-12T12:31:21.6244716Z pango.x86_64 0:1.42.4-4.el7_7 +2026-03-12T12:31:21.6245114Z pcsc-lite-libs.x86_64 0:1.8.8-8.el7 +2026-03-12T12:31:21.6245626Z pixman.x86_64 0:0.34.0-1.el7 +2026-03-12T12:31:21.6246059Z python-javapackages.noarch 0:3.4.1-11.el7 +2026-03-12T12:31:21.6246495Z python-lxml.x86_64 0:3.2.1-4.el7 +2026-03-12T12:31:21.6246890Z python3.x86_64 0:3.6.8-21.el7_9 +2026-03-12T12:31:21.6247291Z python3-libs.x86_64 0:3.6.8-21.el7_9 +2026-03-12T12:31:21.6247727Z python3-setuptools.noarch 0:39.2.0-10.el7 +2026-03-12T12:31:21.6248148Z ttmkfdir.x86_64 0:3.0.9-42.el7 +2026-03-12T12:31:21.6248557Z tzdata-java.noarch 0:2024a-1.el7 +2026-03-12T12:31:21.6248988Z xorg-x11-font-utils.x86_64 1:7.5-21.el7 +2026-03-12T12:31:21.6249442Z xorg-x11-fonts-Type1.noarch 0:7.5-9.el7 +2026-03-12T12:31:21.6249721Z +2026-03-12T12:31:21.6249795Z Complete! +2026-03-12T12:31:21.6497122Z Maven 3.9.12 not found locally. Downloading... +2026-03-12T12:31:21.6508648Z Downloading Maven 3.9.12 from Maven Central... +2026-03-12T12:31:21.6509605Z URL: https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.9.12/apache-maven-3.9.12-bin.tar.gz +2026-03-12T12:31:21.6544920Z % Total % Received % Xferd Average Speed Time Time Time Current +2026-03-12T12:31:21.6545685Z Dload Upload Total Spent Left Speed +2026-03-12T12:31:21.6546113Z +2026-03-12T12:31:21.9830064Z 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 +2026-03-12T12:31:21.9830607Z 100 9016k 100 9016k 0 0 26.7M 0 --:--:-- --:--:-- --:--:-- 26.8M +2026-03-12T12:31:21.9846597Z Download completed successfully +2026-03-12T12:31:21.9847087Z Extracting Maven to /work/build/.mvn... +2026-03-12T12:31:22.0628082Z Maven 3.9.12 installed successfully to /work/build/.mvn/apache-maven-3.9.12 +2026-03-12T12:31:22.0628825Z MAVEN_OPTS: -Xss128m -Xmx4g -XX:ReservedCodeCacheSize=2g +2026-03-12T12:31:23.2188256Z [INFO] Scanning for projects... +2026-03-12T12:31:28.6530426Z [INFO] ------------------------------------------------------------------------ +2026-03-12T12:31:28.6533040Z [INFO] Detecting the operating system and CPU architecture +2026-03-12T12:31:28.6538598Z [INFO] ------------------------------------------------------------------------ +2026-03-12T12:31:28.6539276Z [INFO] os.detected.name: linux +2026-03-12T12:31:28.6539725Z [INFO] os.detected.arch: x86_64 +2026-03-12T12:31:28.6540161Z [INFO] os.detected.version: 6.8 +2026-03-12T12:31:28.6540618Z [INFO] os.detected.version.major: 6 +2026-03-12T12:31:28.6541113Z [INFO] os.detected.version.minor: 8 +2026-03-12T12:31:28.6545762Z [INFO] os.detected.release: centos +2026-03-12T12:31:28.6547452Z [INFO] os.detected.release.version: 7 +2026-03-12T12:31:28.6548228Z [INFO] os.detected.release.like.centos: true +2026-03-12T12:31:28.6549739Z [INFO] os.detected.release.like.rhel: true +2026-03-12T12:31:28.6550543Z [INFO] os.detected.release.like.fedora: true +2026-03-12T12:31:28.6551914Z [INFO] os.detected.classifier: linux-x86_64 +2026-03-12T12:31:28.6649202Z [INFO] ------------------------------------------------------------------------ +2026-03-12T12:31:28.6650503Z [INFO] Reactor Build Order: +2026-03-12T12:31:28.6651031Z [INFO] +2026-03-12T12:31:28.6652789Z [INFO] Gluten Parent Pom [pom] +2026-03-12T12:31:28.6653572Z [INFO] Gluten Ras [pom] +2026-03-12T12:31:28.6654314Z [INFO] Gluten Ras Common [jar] +2026-03-12T12:31:28.6658930Z [INFO] Gluten Core [jar] +2026-03-12T12:31:28.6660439Z [INFO] Gluten Shims [pom] +2026-03-12T12:31:28.6661992Z [INFO] Gluten Shims Common [jar] +2026-03-12T12:31:28.6663376Z [INFO] Gluten Shims for Spark 3.5 [jar] +2026-03-12T12:31:28.6665102Z [INFO] Gluten UI [jar] +2026-03-12T12:31:28.6665931Z [INFO] Gluten Substrait [jar] +2026-03-12T12:31:28.6666685Z [INFO] Gluten Arrow [jar] +2026-03-12T12:31:28.6667437Z [INFO] Gluten Backends Velox [jar] +2026-03-12T12:31:28.6668211Z [INFO] Gluten Package [jar] +2026-03-12T12:31:28.6668971Z [INFO] Gluten Ras Planner [jar] +2026-03-12T12:31:28.6765417Z [INFO] +2026-03-12T12:31:28.6769517Z [INFO] ------------------< org.apache.gluten:gluten-parent >------------------- +2026-03-12T12:31:28.6772492Z [INFO] Building Gluten Parent Pom 1.7.0-SNAPSHOT [1/13] +2026-03-12T12:31:28.6773178Z [INFO] from pom.xml +2026-03-12T12:31:28.6779091Z [INFO] --------------------------------[ pom ]--------------------------------- +2026-03-12T12:31:31.2600384Z [INFO] +2026-03-12T12:31:31.2600915Z [INFO] --- clean:3.4.0:clean (default-clean) @ gluten-parent --- +2026-03-12T12:31:31.4516609Z [INFO] +2026-03-12T12:31:31.4517351Z [INFO] --- enforcer:3.3.0:enforce (enforce-maven-version) @ gluten-parent --- +2026-03-12T12:31:32.5715392Z [INFO] Rule 0: org.apache.maven.enforcer.rules.version.RequireMavenVersion passed +2026-03-12T12:31:32.5716584Z [INFO] +2026-03-12T12:31:32.5717109Z [INFO] --- enforcer:3.3.0:enforce (enforce-java-version) @ gluten-parent --- +2026-03-12T12:31:32.5767551Z [INFO] Rule 0: org.apache.maven.enforcer.rules.version.RequireJavaVersion passed +2026-03-12T12:31:32.5770904Z [INFO] +2026-03-12T12:31:32.5771662Z [INFO] --- enforcer:3.3.0:enforce (enforce-versions) @ gluten-parent --- +2026-03-12T12:31:32.5790868Z [INFO] +2026-03-12T12:31:32.5791682Z [INFO] --- spotless:2.27.2:check (spotless-check) @ gluten-parent --- +2026-03-12T12:31:40.7383622Z [INFO] Sorting file /tmp/pom2198650616256225062.xml +2026-03-12T12:31:40.9322718Z [INFO] Saved sorted pom file to /tmp/pom2198650616256225062.xml +2026-03-12T12:31:40.9352722Z [INFO] +2026-03-12T12:31:40.9353364Z [INFO] --- remote-resources:3.2.0:process (process-resource-bundles) @ gluten-parent --- +2026-03-12T12:31:43.7322726Z [INFO] Preparing remote bundle org.apache.apache.resources:apache-jar-resource-bundle:1.5 +2026-03-12T12:31:43.9008349Z [INFO] Copying 3 resources from 1 bundle. +2026-03-12T12:31:43.9392402Z [INFO] +2026-03-12T12:31:43.9393069Z [INFO] --- source:3.2.1:jar-no-fork (attach-sources) @ gluten-parent --- +2026-03-12T12:31:49.7714339Z [INFO] +2026-03-12T12:31:49.7714955Z [INFO] --- install:3.1.2:install (default-install) @ gluten-parent --- +2026-03-12T12:31:50.1196573Z [INFO] Installing /work/pom.xml to /root/.m2/repository/org/apache/gluten/gluten-parent/1.7.0-SNAPSHOT/gluten-parent-1.7.0-SNAPSHOT.pom +2026-03-12T12:31:50.1251513Z [INFO] +2026-03-12T12:31:50.1258155Z [INFO] --------------------< org.apache.gluten:gluten-ras >-------------------- +2026-03-12T12:31:50.1259396Z [INFO] Building Gluten Ras 1.7.0-SNAPSHOT [2/13] +2026-03-12T12:31:50.1261128Z [INFO] from gluten-ras/pom.xml +2026-03-12T12:31:50.1261875Z [INFO] --------------------------------[ pom ]--------------------------------- +2026-03-12T12:31:54.4308964Z [INFO] +2026-03-12T12:31:54.4309930Z [INFO] --- clean:3.4.0:clean (default-clean) @ gluten-ras --- +2026-03-12T12:31:54.4324542Z [INFO] +2026-03-12T12:31:54.4326652Z [INFO] --- enforcer:3.3.0:enforce (enforce-maven-version) @ gluten-ras --- +2026-03-12T12:31:54.4340635Z [INFO] +2026-03-12T12:31:54.4342404Z [INFO] --- enforcer:3.3.0:enforce (enforce-java-version) @ gluten-ras --- +2026-03-12T12:31:54.4353575Z [INFO] +2026-03-12T12:31:54.4355195Z [INFO] --- enforcer:3.3.0:enforce (enforce-versions) @ gluten-ras --- +2026-03-12T12:31:54.4364721Z [INFO] +2026-03-12T12:31:54.4369575Z [INFO] --- scalastyle:1.0.0:check (default) @ gluten-ras --- +2026-03-12T12:31:57.0812845Z [WARNING] sourceDirectory is not specified or does not exist value=/work/gluten-ras/src/main/scala +2026-03-12T12:31:57.0814351Z [WARNING] testSourceDirectory is not specified or does not exist value=/work/gluten-ras/src/test/scala +2026-03-12T12:31:57.1434724Z Saving to outputFile=/work/gluten-ras/scalastyle-output.xml +2026-03-12T12:31:57.1554623Z Processed 0 file(s) +2026-03-12T12:31:57.1555247Z Found 0 errors +2026-03-12T12:31:57.1555951Z Found 0 warnings +2026-03-12T12:31:57.1608306Z Found 0 infos +2026-03-12T12:31:57.1608666Z Finished in 75 ms +2026-03-12T12:31:57.1609015Z [INFO] +2026-03-12T12:31:57.1609420Z [INFO] --- checkstyle:3.1.1:check (default) @ gluten-ras --- +2026-03-12T12:32:12.1272399Z [INFO] You have 0 Checkstyle violations. +2026-03-12T12:32:12.1277957Z [INFO] +2026-03-12T12:32:12.1279672Z [INFO] --- spotless:2.27.2:check (spotless-check) @ gluten-ras --- +2026-03-12T12:32:12.1474297Z [INFO] Sorting file /tmp/pom8292936945729624116.xml +2026-03-12T12:32:12.1613193Z [INFO] Pom file is already sorted, exiting +2026-03-12T12:32:12.1613841Z [INFO] +2026-03-12T12:32:12.1615975Z [INFO] --- remote-resources:3.2.0:process (process-resource-bundles) @ gluten-ras --- +2026-03-12T12:32:12.1617038Z [INFO] Preparing remote bundle org.apache.apache.resources:apache-jar-resource-bundle:1.5 +2026-03-12T12:32:12.1633238Z [INFO] Copying 3 resources from 1 bundle. +2026-03-12T12:32:12.1730050Z [INFO] +2026-03-12T12:32:12.1735310Z [INFO] --- scala:4.8.0:add-source (scala-compile-first) @ gluten-ras --- +2026-03-12T12:32:16.7077692Z [INFO] Add Source directory: /work/gluten-ras/src/main/scala +2026-03-12T12:32:16.7079409Z [INFO] Add Test Source directory: /work/gluten-ras/src/test/scala +2026-03-12T12:32:16.7087679Z [INFO] +2026-03-12T12:32:16.7088174Z [INFO] --- scala:4.8.0:compile (scala-compile-first) @ gluten-ras --- +2026-03-12T12:32:16.7371644Z [INFO] No sources to compile +2026-03-12T12:32:16.7372554Z [INFO] +2026-03-12T12:32:16.7373222Z [INFO] --- scala:4.8.0:testCompile (scala-test-compile-first) @ gluten-ras --- +2026-03-12T12:32:16.7448739Z [WARNING] Plugin is modifying testCompileSourceRoots through add(), which will not work in Maven 4.0.0. Use MavenProject.addTestCompileSourceRoot()/removeTestCompileSourceRoot() methods instead. If using a plugin, please upgrade to the latest version or report the issue to the plugin maintainer. To disable these warnings, set -Dmaven.project.sourceRoots.warningsDisabled=true on the command line, in the .mvn/maven.config file, or in project POM properties. +2026-03-12T12:32:16.7452013Z [INFO] No sources to compile +2026-03-12T12:32:16.7452344Z [INFO] +2026-03-12T12:32:16.7452685Z [INFO] --- scalatest:2.2.0:test (test) @ gluten-ras --- +2026-03-12T12:32:20.7827565Z [INFO] ScalaTest report directory: /work/gluten-ras/target/surefire-reports +2026-03-12T12:32:20.7828838Z [INFO] Tests are skipped. +2026-03-12T12:32:20.7830122Z [INFO] +2026-03-12T12:32:20.7830812Z [INFO] --- jar:3.2.2:jar (default) @ gluten-ras --- +2026-03-12T12:32:27.9879384Z [WARNING] JAR will be empty - no content was marked for inclusion! +2026-03-12T12:32:27.9999894Z [INFO] Building jar: /work/gluten-ras/target/gluten-ras-1.7.0-SNAPSHOT-3.5.jar +2026-03-12T12:32:28.0327194Z [INFO] +2026-03-12T12:32:28.0328027Z [INFO] --- jar:3.2.2:test-jar (prepare-test-jar) @ gluten-ras --- +2026-03-12T12:32:28.0348104Z [WARNING] JAR will be empty - no content was marked for inclusion! +2026-03-12T12:32:28.0360939Z [INFO] Building jar: /work/gluten-ras/target/gluten-ras-1.7.0-SNAPSHOT-tests.jar +2026-03-12T12:32:28.0397314Z [INFO] +2026-03-12T12:32:28.0397995Z [INFO] --- source:3.2.1:jar-no-fork (attach-sources) @ gluten-ras --- +2026-03-12T12:32:28.0410118Z [INFO] +2026-03-12T12:32:28.0411392Z [INFO] --- install:3.1.2:install (default-install) @ gluten-ras --- +2026-03-12T12:32:28.0425445Z [INFO] Installing /work/gluten-ras/pom.xml to /root/.m2/repository/org/apache/gluten/gluten-ras/1.7.0-SNAPSHOT/gluten-ras-1.7.0-SNAPSHOT.pom +2026-03-12T12:32:28.0430312Z [INFO] Installing /work/gluten-ras/target/gluten-ras-1.7.0-SNAPSHOT-3.5.jar to /root/.m2/repository/org/apache/gluten/gluten-ras/1.7.0-SNAPSHOT/gluten-ras-1.7.0-SNAPSHOT-3.5.jar +2026-03-12T12:32:28.0433694Z [INFO] Installing /work/gluten-ras/target/gluten-ras-1.7.0-SNAPSHOT-tests.jar to /root/.m2/repository/org/apache/gluten/gluten-ras/1.7.0-SNAPSHOT/gluten-ras-1.7.0-SNAPSHOT-tests.jar +2026-03-12T12:32:28.0446686Z [INFO] +2026-03-12T12:32:28.0472223Z [INFO] ----------------< org.apache.gluten:gluten-ras-common >----------------- +2026-03-12T12:32:28.0473165Z [INFO] Building Gluten Ras Common 1.7.0-SNAPSHOT [3/13] +2026-03-12T12:32:28.0473861Z [INFO] from gluten-ras/common/pom.xml +2026-03-12T12:32:28.0474473Z [INFO] --------------------------------[ jar ]--------------------------------- +2026-03-12T12:32:29.0706186Z [INFO] +2026-03-12T12:32:29.0707193Z [INFO] --- clean:3.4.0:clean (default-clean) @ gluten-ras-common --- +2026-03-12T12:32:29.0708263Z [INFO] +2026-03-12T12:32:29.0717977Z [INFO] --- enforcer:3.3.0:enforce (enforce-maven-version) @ gluten-ras-common --- +2026-03-12T12:32:29.0718773Z [INFO] +2026-03-12T12:32:29.0720225Z [INFO] --- enforcer:3.3.0:enforce (enforce-java-version) @ gluten-ras-common --- +2026-03-12T12:32:29.0732334Z [INFO] +2026-03-12T12:32:29.0732925Z [INFO] --- enforcer:3.3.0:enforce (enforce-versions) @ gluten-ras-common --- +2026-03-12T12:32:29.0740753Z [INFO] +2026-03-12T12:32:29.0741394Z [INFO] --- scalastyle:1.0.0:check (default) @ gluten-ras-common --- +2026-03-12T12:32:31.1031749Z Saving to outputFile=/work/gluten-ras/common/scalastyle-output.xml +2026-03-12T12:32:31.1036405Z Processed 58 file(s) +2026-03-12T12:32:31.1037126Z Found 0 errors +2026-03-12T12:32:31.1037423Z Found 0 warnings +2026-03-12T12:32:31.1037839Z Found 0 infos +2026-03-12T12:32:31.1038130Z Finished in 2014 ms +2026-03-12T12:32:31.1039189Z [INFO] +2026-03-12T12:32:31.1039641Z [INFO] --- checkstyle:3.1.1:check (default) @ gluten-ras-common --- +2026-03-12T12:32:31.1646603Z [INFO] You have 0 Checkstyle violations. +2026-03-12T12:32:31.1651071Z [INFO] +2026-03-12T12:32:31.1651960Z [INFO] --- spotless:2.27.2:check (spotless-check) @ gluten-ras-common --- +2026-03-12T12:32:31.1862860Z [INFO] Sorting file /tmp/pom1801603521346619347.xml +2026-03-12T12:32:31.1915100Z [INFO] Pom file is already sorted, exiting +2026-03-12T12:32:38.2065119Z [INFO] +2026-03-12T12:32:38.2067219Z [INFO] --- remote-resources:3.2.0:process (process-resource-bundles) @ gluten-ras-common --- +2026-03-12T12:32:38.2095634Z [INFO] Preparing remote bundle org.apache.apache.resources:apache-jar-resource-bundle:1.5 +2026-03-12T12:32:38.2133866Z [INFO] Copying 3 resources from 1 bundle. +2026-03-12T12:32:38.2231173Z [INFO] +2026-03-12T12:32:38.2232549Z [INFO] --- resources:3.0.1:resources (default-resources) @ gluten-ras-common --- +2026-03-12T12:32:39.0174963Z [INFO] Using 'UTF-8' encoding to copy filtered resources. +2026-03-12T12:32:39.0178446Z [INFO] skip non existing resourceDirectory /work/gluten-ras/common/src/main/resources +2026-03-12T12:32:39.0202720Z [INFO] Copying 3 resources +2026-03-12T12:32:39.0290369Z [INFO] +2026-03-12T12:32:39.0290910Z [INFO] --- scala:4.8.0:add-source (scala-compile-first) @ gluten-ras-common --- +2026-03-12T12:32:39.0296523Z [INFO] Add Source directory: /work/gluten-ras/common/src/main/scala +2026-03-12T12:32:39.0298890Z [INFO] Add Test Source directory: /work/gluten-ras/common/src/test/scala +2026-03-12T12:32:39.0299646Z [INFO] +2026-03-12T12:32:39.0300128Z [INFO] --- scala:4.8.0:compile (scala-compile-first) @ gluten-ras-common --- +2026-03-12T12:32:39.0441451Z [INFO] /work/gluten-ras/common/src/main/scala:-1: info: compiling +2026-03-12T12:32:39.0447299Z [INFO] Compiling 41 source files to /work/gluten-ras/common/target/scala-2.12/classes at 1773318759042 +2026-03-12T12:32:40.3205723Z [INFO] compiler plugin: BasicArtifact(org.wartremover,wartremover_2.12,3.0.6,null) +2026-03-12T12:32:49.7472783Z [INFO] prepare-compile in 0.0 s +2026-03-12T12:32:49.7473897Z [INFO] compile in 10.7 s +2026-03-12T12:32:49.7474624Z [INFO] +2026-03-12T12:32:49.7475171Z [INFO] --- compiler:3.14.1:compile (default-compile) @ gluten-ras-common --- +2026-03-12T12:32:50.9172250Z [INFO] Nothing to compile - all classes are up to date. +2026-03-12T12:32:50.9186190Z [INFO] +2026-03-12T12:32:50.9187003Z [INFO] --- resources:3.0.1:testResources (default-testResources) @ gluten-ras-common --- +2026-03-12T12:32:50.9203153Z [INFO] Using 'UTF-8' encoding to copy filtered resources. +2026-03-12T12:32:50.9206502Z [INFO] Copying 1 resource +2026-03-12T12:32:50.9214544Z [INFO] Copying 3 resources +2026-03-12T12:32:50.9232250Z [INFO] +2026-03-12T12:32:50.9234203Z [INFO] --- scala:4.8.0:testCompile (scala-test-compile-first) @ gluten-ras-common --- +2026-03-12T12:32:50.9269551Z [WARNING] Plugin is modifying testCompileSourceRoots through add(), which will not work in Maven 4.0.0. Use MavenProject.addTestCompileSourceRoot()/removeTestCompileSourceRoot() methods instead. If using a plugin, please upgrade to the latest version or report the issue to the plugin maintainer. To disable these warnings, set -Dmaven.project.sourceRoots.warningsDisabled=true on the command line, in the .mvn/maven.config file, or in project POM properties. +2026-03-12T12:32:50.9297688Z [INFO] /work/gluten-ras/common/src/test/scala:-1: info: compiling +2026-03-12T12:32:50.9298803Z [INFO] Compiling 17 source files to /work/gluten-ras/common/target/scala-2.12/test-classes at 1773318770928 +2026-03-12T12:32:50.9358834Z [INFO] compiler plugin: BasicArtifact(org.wartremover,wartremover_2.12,3.0.6,null) +2026-03-12T12:33:01.8185876Z [INFO] prepare-compile in 0.0 s +2026-03-12T12:33:01.8186274Z [INFO] compile in 10.9 s +2026-03-12T12:33:01.8188451Z [INFO] +2026-03-12T12:33:01.8190879Z [INFO] --- compiler:3.14.1:testCompile (default-testCompile) @ gluten-ras-common --- +2026-03-12T12:33:01.8279102Z [INFO] Recompiling the module because of changed dependency. +2026-03-12T12:33:01.8474744Z [INFO] +2026-03-12T12:33:01.8475796Z [INFO] --- surefire:3.3.0:test (default-test) @ gluten-ras-common --- +2026-03-12T12:33:03.0119768Z [INFO] Tests are skipped. +2026-03-12T12:33:03.0120199Z [INFO] +2026-03-12T12:33:03.0128676Z [INFO] --- scalatest:2.2.0:test (test) @ gluten-ras-common --- +2026-03-12T12:33:03.0151980Z [INFO] ScalaTest report directory: /work/gluten-ras/common/target/surefire-reports +2026-03-12T12:33:03.0153444Z [INFO] Tests are skipped. +2026-03-12T12:33:03.0159981Z [INFO] +2026-03-12T12:33:03.0163583Z [INFO] --- jar:3.2.2:jar (default-jar) @ gluten-ras-common --- +2026-03-12T12:33:03.0777717Z [INFO] Building jar: /work/gluten-ras/common/target/gluten-ras-common-1.7.0-SNAPSHOT.jar +2026-03-12T12:33:03.1420590Z [INFO] +2026-03-12T12:33:03.1424085Z [INFO] --- jar:3.2.2:jar (default) @ gluten-ras-common --- +2026-03-12T12:33:03.1945685Z [INFO] Building jar: /work/gluten-ras/common/target/gluten-ras-common-1.7.0-SNAPSHOT-3.5.jar +2026-03-12T12:33:03.2379862Z [INFO] +2026-03-12T12:33:03.2380443Z [INFO] --- jar:3.2.2:test-jar (prepare-test-jar) @ gluten-ras-common --- +2026-03-12T12:33:03.2727012Z [INFO] Building jar: /work/gluten-ras/common/target/gluten-ras-common-1.7.0-SNAPSHOT-tests.jar +2026-03-12T12:33:03.2998547Z [INFO] +2026-03-12T12:33:03.3011044Z [INFO] --- source:3.2.1:jar-no-fork (attach-sources) @ gluten-ras-common --- +2026-03-12T12:33:03.3213882Z [INFO] Building jar: /work/gluten-ras/common/target/gluten-ras-common-1.7.0-SNAPSHOT-sources.jar +2026-03-12T12:33:03.3583142Z [INFO] +2026-03-12T12:33:03.3583733Z [INFO] --- install:3.1.2:install (default-install) @ gluten-ras-common --- +2026-03-12T12:33:03.3593912Z [INFO] Installing /work/gluten-ras/common/pom.xml to /root/.m2/repository/org/apache/gluten/gluten-ras-common/1.7.0-SNAPSHOT/gluten-ras-common-1.7.0-SNAPSHOT.pom +2026-03-12T12:33:03.3602412Z [INFO] Installing /work/gluten-ras/common/target/gluten-ras-common-1.7.0-SNAPSHOT.jar to /root/.m2/repository/org/apache/gluten/gluten-ras-common/1.7.0-SNAPSHOT/gluten-ras-common-1.7.0-SNAPSHOT.jar +2026-03-12T12:33:03.3613438Z [INFO] Installing /work/gluten-ras/common/target/gluten-ras-common-1.7.0-SNAPSHOT-3.5.jar to /root/.m2/repository/org/apache/gluten/gluten-ras-common/1.7.0-SNAPSHOT/gluten-ras-common-1.7.0-SNAPSHOT-3.5.jar +2026-03-12T12:33:03.3623559Z [INFO] Installing /work/gluten-ras/common/target/gluten-ras-common-1.7.0-SNAPSHOT-tests.jar to /root/.m2/repository/org/apache/gluten/gluten-ras-common/1.7.0-SNAPSHOT/gluten-ras-common-1.7.0-SNAPSHOT-tests.jar +2026-03-12T12:33:03.3632817Z [INFO] Installing /work/gluten-ras/common/target/gluten-ras-common-1.7.0-SNAPSHOT-sources.jar to /root/.m2/repository/org/apache/gluten/gluten-ras-common/1.7.0-SNAPSHOT/gluten-ras-common-1.7.0-SNAPSHOT-sources.jar +2026-03-12T12:33:03.3648901Z [INFO] +2026-03-12T12:33:03.3649590Z [INFO] -------------------< org.apache.gluten:gluten-core >-------------------- +2026-03-12T12:33:03.3654816Z [INFO] Building Gluten Core 1.7.0-SNAPSHOT [4/13] +2026-03-12T12:33:03.3655494Z [INFO] from gluten-core/pom.xml +2026-03-12T12:33:03.3656090Z [INFO] --------------------------------[ jar ]--------------------------------- +2026-03-12T12:33:37.8914396Z [INFO] +2026-03-12T12:33:37.8914966Z [INFO] --- clean:3.4.0:clean (default-clean) @ gluten-core --- +2026-03-12T12:33:37.8915616Z [INFO] +2026-03-12T12:33:37.8916146Z [INFO] --- enforcer:3.3.0:enforce (enforce-maven-version) @ gluten-core --- +2026-03-12T12:33:37.8916804Z [INFO] +2026-03-12T12:33:37.8917283Z [INFO] --- enforcer:3.3.0:enforce (enforce-java-version) @ gluten-core --- +2026-03-12T12:33:37.8923080Z [INFO] +2026-03-12T12:33:37.8923910Z [INFO] --- enforcer:3.3.0:enforce (enforce-versions) @ gluten-core --- +2026-03-12T12:33:37.8926797Z [INFO] +2026-03-12T12:33:37.8928241Z [INFO] --- scalastyle:1.0.0:check (default) @ gluten-core --- +2026-03-12T12:33:38.6721463Z Saving to outputFile=/work/gluten-core/scalastyle-output.xml +2026-03-12T12:33:38.6729318Z Processed 100 file(s) +2026-03-12T12:33:38.6730349Z Found 0 errors +2026-03-12T12:33:38.6736523Z Found 0 warnings +2026-03-12T12:33:38.6737213Z Found 0 infos +2026-03-12T12:33:38.6737802Z Finished in 770 ms +2026-03-12T12:33:38.6738597Z [INFO] +2026-03-12T12:33:38.6739321Z [INFO] --- checkstyle:3.1.1:check (default) @ gluten-core --- +2026-03-12T12:33:39.1514118Z [INFO] You have 0 Checkstyle violations. +2026-03-12T12:33:39.1517374Z [INFO] +2026-03-12T12:33:39.1518163Z [INFO] --- spotless:2.27.2:check (spotless-check) @ gluten-core --- +2026-03-12T12:33:39.1857424Z [INFO] Sorting file /tmp/pom8717068851154061011.xml +2026-03-12T12:33:39.1944155Z [INFO] Pom file is already sorted, exiting +2026-03-12T12:33:42.4272864Z [INFO] +2026-03-12T12:33:42.4273952Z [INFO] --- protobuf:0.6.1:compile (compile-gluten-proto) @ gluten-core --- +2026-03-12T12:33:43.4712426Z [INFO] Compiling 2 proto file(s) to /work/gluten-core/target/generated-sources/protobuf/java +2026-03-12T12:33:43.4809639Z [INFO] +2026-03-12T12:33:43.4810242Z [INFO] --- protobuf:0.6.1:test-compile (compile-gluten-proto) @ gluten-core --- +2026-03-12T12:33:43.4825036Z [INFO] /work/gluten-core/src/test/proto does not exist. Review the configuration or consider disabling the plugin. +2026-03-12T12:33:43.4825952Z [INFO] +2026-03-12T12:33:43.4826506Z [INFO] --- remote-resources:3.2.0:process (process-resource-bundles) @ gluten-core --- +2026-03-12T12:33:43.4838997Z [INFO] Preparing remote bundle org.apache.apache.resources:apache-jar-resource-bundle:1.5 +2026-03-12T12:33:43.4871563Z [INFO] Copying 3 resources from 1 bundle. +2026-03-12T12:33:43.5169657Z [INFO] +2026-03-12T12:33:43.5170410Z [INFO] --- antrun:3.1.0:run (build-info) @ gluten-core --- +2026-03-12T12:33:43.8647960Z [INFO] Executing tasks +2026-03-12T12:33:43.9899546Z [INFO] [exec] --version +2026-03-12T12:33:43.9901396Z [INFO] [exec] --java +2026-03-12T12:33:43.9901876Z [INFO] [exec] --scala +2026-03-12T12:33:43.9902302Z [INFO] [exec] --spark +2026-03-12T12:33:43.9902657Z [INFO] [exec] --hadoop +2026-03-12T12:33:43.9903014Z [INFO] [exec] --backend +2026-03-12T12:33:44.0707719Z [INFO] [exec] --revision +2026-03-12T12:33:44.0711400Z [INFO] [exec] /work/gluten-core/../dev/gluten-build-info.sh: line 40: git: command not found +2026-03-12T12:33:44.0715535Z [INFO] [exec] /work/gluten-core/../dev/gluten-build-info.sh: line 41: git: command not found +2026-03-12T12:33:44.0716739Z [INFO] [exec] /work/gluten-core/../dev/gluten-build-info.sh: line 42: git: command not found +2026-03-12T12:33:44.0717892Z [INFO] [exec] /work/gluten-core/../dev/gluten-build-info.sh: line 30: git: command not found +2026-03-12T12:33:44.0719880Z [INFO] [exec] /work/gluten-core/../dev/gluten-build-info.sh: line 31: git: command not found +2026-03-12T12:33:44.0721077Z [INFO] [exec] /work/gluten-core/../dev/gluten-build-info.sh: line 32: git: command not found +2026-03-12T12:33:44.0723005Z [INFO] [exec] /work/gluten-core/../dev/gluten-build-info.sh: line 34: git: command not found +2026-03-12T12:33:44.0733020Z [INFO] Executed tasks +2026-03-12T12:33:44.0736248Z [INFO] +2026-03-12T12:33:44.0743729Z [INFO] --- resources:3.0.1:resources (default-resources) @ gluten-core --- +2026-03-12T12:33:44.0751464Z [INFO] Using 'UTF-8' encoding to copy filtered resources. +2026-03-12T12:33:44.0758326Z [INFO] Copying 2 resources +2026-03-12T12:33:44.0774402Z [INFO] Copying 1 resource +2026-03-12T12:33:44.0779255Z [INFO] Copying 2 resources +2026-03-12T12:33:44.0788449Z [INFO] Copying 3 resources +2026-03-12T12:33:44.0799650Z [INFO] +2026-03-12T12:33:44.0800938Z [INFO] --- scala:4.8.0:add-source (scala-compile-first) @ gluten-core --- +2026-03-12T12:33:44.0805605Z [INFO] Add Source directory: /work/gluten-core/src/main/scala +2026-03-12T12:33:44.0806983Z [INFO] Add Test Source directory: /work/gluten-core/src/test/scala +2026-03-12T12:33:44.0809326Z [INFO] +2026-03-12T12:33:44.0809806Z [INFO] --- scala:4.8.0:compile (scala-compile-first) @ gluten-core --- +2026-03-12T12:33:44.1233685Z [INFO] /work/gluten-core/src/main/java:-1: info: compiling +2026-03-12T12:33:44.1235041Z [INFO] /work/gluten-core/target/generated-sources/protobuf/java:-1: info: compiling +2026-03-12T12:33:44.1242332Z [INFO] /work/gluten-core/src/main/scala:-1: info: compiling +2026-03-12T12:33:44.1243246Z [INFO] Compiling 127 source files to /work/gluten-core/target/scala-2.12/classes at 1773318824122 +2026-03-12T12:33:44.1282805Z [INFO] compiler plugin: BasicArtifact(org.wartremover,wartremover_2.12,3.0.6,null) +2026-03-12T12:33:54.9601545Z [INFO] prepare-compile in 0.0 s +2026-03-12T12:33:54.9602056Z [INFO] compile in 10.8 s +2026-03-12T12:33:54.9607108Z [INFO] +2026-03-12T12:33:54.9607606Z [INFO] --- compiler:3.14.1:compile (default-compile) @ gluten-core --- +2026-03-12T12:33:54.9763202Z [INFO] Recompiling the module because of changed dependency. +2026-03-12T12:33:54.9842038Z [INFO] Compiling 35 source files with javac [debug target 1.8] to target/scala-2.12/classes +2026-03-12T12:33:56.3219962Z [INFO] /work/gluten-core/src/main/java/org/apache/gluten/memory/memtarget/MemoryTargetVisitor.java: /work/gluten-core/src/main/java/org/apache/gluten/memory/memtarget/MemoryTargetVisitor.java uses or overrides a deprecated API. +2026-03-12T12:33:56.3222890Z [INFO] /work/gluten-core/src/main/java/org/apache/gluten/memory/memtarget/MemoryTargetVisitor.java: Recompile with -Xlint:deprecation for details. +2026-03-12T12:33:56.3224074Z [INFO] +2026-03-12T12:33:56.3224650Z [INFO] --- resources:3.0.1:testResources (default-testResources) @ gluten-core --- +2026-03-12T12:33:56.3225465Z [INFO] Using 'UTF-8' encoding to copy filtered resources. +2026-03-12T12:33:56.3230515Z [INFO] Copying 9 resources +2026-03-12T12:33:56.3498487Z [INFO] Copying 3 resources +2026-03-12T12:33:56.3507863Z [INFO] +2026-03-12T12:33:56.3508753Z [INFO] --- scala:4.8.0:testCompile (scala-test-compile-first) @ gluten-core --- +2026-03-12T12:33:56.3734099Z [WARNING] Plugin is modifying testCompileSourceRoots through add(), which will not work in Maven 4.0.0. Use MavenProject.addTestCompileSourceRoot()/removeTestCompileSourceRoot() methods instead. If using a plugin, please upgrade to the latest version or report the issue to the plugin maintainer. To disable these warnings, set -Dmaven.project.sourceRoots.warningsDisabled=true on the command line, in the .mvn/maven.config file, or in project POM properties. +2026-03-12T12:33:56.3752790Z [INFO] /work/gluten-core/src/test/java:-1: info: compiling +2026-03-12T12:33:56.3761149Z [INFO] /work/gluten-core/src/test/scala:-1: info: compiling +2026-03-12T12:33:56.3764275Z [INFO] Compiling 11 source files to /work/gluten-core/target/scala-2.12/test-classes at 1773318836374 +2026-03-12T12:33:56.3807780Z [INFO] compiler plugin: BasicArtifact(org.wartremover,wartremover_2.12,3.0.6,null) +2026-03-12T12:34:02.9848461Z [INFO] prepare-compile in 0.0 s +2026-03-12T12:34:02.9848936Z [INFO] compile in 6.6 s +2026-03-12T12:34:02.9849338Z [INFO] +2026-03-12T12:34:02.9851553Z [INFO] --- compiler:3.14.1:testCompile (default-testCompile) @ gluten-core --- +2026-03-12T12:34:02.9905747Z [INFO] Recompiling the module because of changed dependency. +2026-03-12T12:34:02.9929412Z [INFO] Compiling 3 source files with javac [debug target 1.8] to target/scala-2.12/test-classes +2026-03-12T12:34:03.4020102Z [INFO] +2026-03-12T12:34:03.4022562Z [INFO] --- surefire:3.3.0:test (default-test) @ gluten-core --- +2026-03-12T12:34:03.4046692Z [INFO] Tests are skipped. +2026-03-12T12:34:03.4047191Z [INFO] +2026-03-12T12:34:03.4047622Z [INFO] --- scalatest:2.2.0:test (test) @ gluten-core --- +2026-03-12T12:34:03.4053831Z [INFO] ScalaTest report directory: /work/gluten-core/target/surefire-reports +2026-03-12T12:34:03.4055144Z [INFO] Tests are skipped. +2026-03-12T12:34:03.4055713Z [INFO] +2026-03-12T12:34:03.4056252Z [INFO] --- jar:3.2.2:jar (default-jar) @ gluten-core --- +2026-03-12T12:34:03.4642646Z [INFO] Building jar: /work/gluten-core/target/gluten-core-1.7.0-SNAPSHOT.jar +2026-03-12T12:34:03.5161941Z [INFO] +2026-03-12T12:34:03.5162744Z [INFO] --- jar:3.2.2:jar (default) @ gluten-core --- +2026-03-12T12:34:03.5712148Z [INFO] Building jar: /work/gluten-core/target/gluten-core-1.7.0-SNAPSHOT-3.5.jar +2026-03-12T12:34:03.6079144Z [INFO] +2026-03-12T12:34:03.6080152Z [INFO] --- jar:3.2.2:test-jar (prepare-test-jar) @ gluten-core --- +2026-03-12T12:34:03.6209965Z [INFO] Building jar: /work/gluten-core/target/gluten-core-1.7.0-SNAPSHOT-tests.jar +2026-03-12T12:34:04.4696467Z [INFO] +2026-03-12T12:34:04.4698185Z [INFO] --- source:3.2.1:jar-no-fork (attach-sources) @ gluten-core --- +2026-03-12T12:34:04.4747676Z [INFO] Building jar: /work/gluten-core/target/gluten-core-1.7.0-SNAPSHOT-sources.jar +2026-03-12T12:34:04.5186392Z [INFO] +2026-03-12T12:34:04.5187615Z [INFO] --- install:3.1.2:install (default-install) @ gluten-core --- +2026-03-12T12:34:04.5194861Z [INFO] Installing /work/gluten-core/pom.xml to /root/.m2/repository/org/apache/gluten/gluten-core/1.7.0-SNAPSHOT/gluten-core-1.7.0-SNAPSHOT.pom +2026-03-12T12:34:04.5203580Z [INFO] Installing /work/gluten-core/target/gluten-core-1.7.0-SNAPSHOT.jar to /root/.m2/repository/org/apache/gluten/gluten-core/1.7.0-SNAPSHOT/gluten-core-1.7.0-SNAPSHOT.jar +2026-03-12T12:34:04.5219334Z [INFO] Installing /work/gluten-core/target/gluten-core-1.7.0-SNAPSHOT-3.5.jar to /root/.m2/repository/org/apache/gluten/gluten-core/1.7.0-SNAPSHOT/gluten-core-1.7.0-SNAPSHOT-3.5.jar +2026-03-12T12:34:04.5233878Z [INFO] Installing /work/gluten-core/target/gluten-core-1.7.0-SNAPSHOT-tests.jar to /root/.m2/repository/org/apache/gluten/gluten-core/1.7.0-SNAPSHOT/gluten-core-1.7.0-SNAPSHOT-tests.jar +2026-03-12T12:34:04.5475656Z [INFO] Installing /work/gluten-core/target/gluten-core-1.7.0-SNAPSHOT-sources.jar to /root/.m2/repository/org/apache/gluten/gluten-core/1.7.0-SNAPSHOT/gluten-core-1.7.0-SNAPSHOT-sources.jar +2026-03-12T12:34:04.5492839Z [INFO] +2026-03-12T12:34:04.5493992Z [INFO] -------------< org.apache.gluten:spark-sql-columnar-shims >------------- +2026-03-12T12:34:04.5494930Z [INFO] Building Gluten Shims 1.7.0-SNAPSHOT [5/13] +2026-03-12T12:34:04.5495643Z [INFO] from shims/pom.xml +2026-03-12T12:34:04.5496217Z [INFO] --------------------------------[ pom ]--------------------------------- +2026-03-12T12:34:04.9498883Z [INFO] +2026-03-12T12:34:04.9500177Z [INFO] --- clean:3.4.0:clean (default-clean) @ spark-sql-columnar-shims --- +2026-03-12T12:34:04.9508736Z [INFO] +2026-03-12T12:34:04.9509481Z [INFO] --- enforcer:3.3.0:enforce (enforce-maven-version) @ spark-sql-columnar-shims --- +2026-03-12T12:34:04.9524236Z [INFO] +2026-03-12T12:34:04.9525025Z [INFO] --- enforcer:3.3.0:enforce (enforce-java-version) @ spark-sql-columnar-shims --- +2026-03-12T12:34:04.9530871Z [INFO] +2026-03-12T12:34:04.9532080Z [INFO] --- enforcer:3.3.0:enforce (enforce-versions) @ spark-sql-columnar-shims --- +2026-03-12T12:34:04.9538998Z [INFO] +2026-03-12T12:34:04.9541098Z [INFO] --- spotless:2.27.2:check (spotless-check) @ spark-sql-columnar-shims --- +2026-03-12T12:34:04.9676336Z [INFO] Sorting file /tmp/pom627374574200027759.xml +2026-03-12T12:34:04.9735624Z [INFO] Pom file is already sorted, exiting +2026-03-12T12:34:04.9738498Z [INFO] +2026-03-12T12:34:04.9739239Z [INFO] --- remote-resources:3.2.0:process (process-resource-bundles) @ spark-sql-columnar-shims --- +2026-03-12T12:34:04.9754776Z [INFO] Preparing remote bundle org.apache.apache.resources:apache-jar-resource-bundle:1.5 +2026-03-12T12:34:04.9784719Z [INFO] Copying 3 resources from 1 bundle. +2026-03-12T12:34:04.9856326Z [INFO] +2026-03-12T12:34:04.9858124Z [INFO] --- source:3.2.1:jar-no-fork (attach-sources) @ spark-sql-columnar-shims --- +2026-03-12T12:34:04.9859083Z [INFO] +2026-03-12T12:34:04.9859957Z [INFO] --- install:3.1.2:install (default-install) @ spark-sql-columnar-shims --- +2026-03-12T12:34:04.9862507Z [INFO] Installing /work/shims/pom.xml to /root/.m2/repository/org/apache/gluten/spark-sql-columnar-shims/1.7.0-SNAPSHOT/spark-sql-columnar-shims-1.7.0-SNAPSHOT.pom +2026-03-12T12:34:04.9871700Z [INFO] +2026-03-12T12:34:04.9877722Z [INFO] ---------< org.apache.gluten:spark-sql-columnar-shims-common >---------- +2026-03-12T12:34:04.9879105Z [INFO] Building Gluten Shims Common 1.7.0-SNAPSHOT [6/13] +2026-03-12T12:34:04.9881044Z [INFO] from shims/common/pom.xml +2026-03-12T12:34:04.9881768Z [INFO] --------------------------------[ jar ]--------------------------------- +2026-03-12T12:34:05.2042597Z [INFO] +2026-03-12T12:34:05.2043179Z [INFO] --- clean:3.4.0:clean (default-clean) @ spark-sql-columnar-shims-common --- +2026-03-12T12:34:05.2048657Z [INFO] +2026-03-12T12:34:05.2049349Z [INFO] --- enforcer:3.3.0:enforce (enforce-maven-version) @ spark-sql-columnar-shims-common --- +2026-03-12T12:34:05.2066889Z [INFO] +2026-03-12T12:34:05.2069493Z [INFO] --- enforcer:3.3.0:enforce (enforce-java-version) @ spark-sql-columnar-shims-common --- +2026-03-12T12:34:05.2080773Z [INFO] +2026-03-12T12:34:05.2081962Z [INFO] --- enforcer:3.3.0:enforce (enforce-versions) @ spark-sql-columnar-shims-common --- +2026-03-12T12:34:05.2083178Z [INFO] +2026-03-12T12:34:05.2087978Z [INFO] --- checkstyle:3.1.1:check (default) @ spark-sql-columnar-shims-common --- +2026-03-12T12:34:05.2795486Z [INFO] You have 0 Checkstyle violations. +2026-03-12T12:34:05.2821945Z [INFO] +2026-03-12T12:34:05.2823113Z [INFO] --- scalastyle:1.0.0:check (default) @ spark-sql-columnar-shims-common --- +2026-03-12T12:34:05.2879490Z [WARNING] testSourceDirectory is not specified or does not exist value=/work/shims/common/src/test/scala +2026-03-12T12:34:05.4436497Z Saving to outputFile=/work/shims/common/scalastyle-output.xml +2026-03-12T12:34:05.4437186Z Processed 15 file(s) +2026-03-12T12:34:05.4437523Z Found 0 errors +2026-03-12T12:34:05.4437819Z Found 0 warnings +2026-03-12T12:34:05.4438120Z Found 0 infos +2026-03-12T12:34:05.4438413Z Finished in 156 ms +2026-03-12T12:34:05.4438716Z [INFO] +2026-03-12T12:34:05.4439282Z [INFO] --- spotless:2.27.2:check (spotless-check) @ spark-sql-columnar-shims-common --- +2026-03-12T12:34:05.4811739Z [INFO] Sorting file /tmp/pom9129361797494356202.xml +2026-03-12T12:34:05.4851096Z [INFO] Pom file is already sorted, exiting +2026-03-12T12:34:05.7484581Z [INFO] +2026-03-12T12:34:05.7486012Z [INFO] --- remote-resources:3.2.0:process (process-resource-bundles) @ spark-sql-columnar-shims-common --- +2026-03-12T12:34:05.7495695Z [INFO] Preparing remote bundle org.apache.apache.resources:apache-jar-resource-bundle:1.5 +2026-03-12T12:34:05.7523400Z [INFO] Copying 3 resources from 1 bundle. +2026-03-12T12:34:05.7605554Z [INFO] +2026-03-12T12:34:05.7606730Z [INFO] --- resources:3.0.1:resources (default-resources) @ spark-sql-columnar-shims-common --- +2026-03-12T12:34:05.7607925Z [INFO] Using 'UTF-8' encoding to copy filtered resources. +2026-03-12T12:34:05.7609057Z [INFO] skip non existing resourceDirectory /work/shims/common/src/main/resources +2026-03-12T12:34:05.7610874Z [INFO] Copying 3 resources +2026-03-12T12:34:05.7611446Z [INFO] +2026-03-12T12:34:05.7612086Z [INFO] --- scala:4.8.0:add-source (scala-compile-first) @ spark-sql-columnar-shims-common --- +2026-03-12T12:34:05.7613005Z [INFO] Add Source directory: /work/shims/common/src/main/scala +2026-03-12T12:34:05.7613727Z [INFO] Add Test Source directory: /work/shims/common/src/test/scala +2026-03-12T12:34:05.7614295Z [INFO] +2026-03-12T12:34:05.7614886Z [INFO] --- scala:4.8.0:compile (scala-compile-first) @ spark-sql-columnar-shims-common --- +2026-03-12T12:34:05.7818170Z [WARNING] Expected all dependencies to require Scala version: 2.12.18 +2026-03-12T12:34:05.7824251Z [WARNING] org.scalatest:scalatest_2.12:3.2.16 requires scala version: 2.12.17 +2026-03-12T12:34:05.7825076Z [WARNING] Multiple versions of scala libraries detected! +2026-03-12T12:34:05.7847535Z [INFO] /work/shims/common/src/main/java:-1: info: compiling +2026-03-12T12:34:05.7849433Z [INFO] /work/shims/common/src/main/scala:-1: info: compiling +2026-03-12T12:34:05.7850256Z [INFO] Compiling 18 source files to /work/shims/common/target/classes at 1773318845783 +2026-03-12T12:34:05.7911419Z [INFO] compiler plugin: BasicArtifact(org.wartremover,wartremover_2.12,3.0.6,null) +2026-03-12T12:34:11.1480341Z [INFO] prepare-compile in 0.0 s +2026-03-12T12:34:11.1480822Z [INFO] compile in 5.4 s +2026-03-12T12:34:11.1481545Z [INFO] +2026-03-12T12:34:11.1482126Z [INFO] --- compiler:3.14.1:compile (default-compile) @ spark-sql-columnar-shims-common --- +2026-03-12T12:34:11.1596748Z [INFO] Recompiling the module because of changed source code. +2026-03-12T12:34:11.1608218Z [INFO] Compiling 3 source files with javac [debug target 1.8] to target/classes +2026-03-12T12:34:11.3722553Z [INFO] +2026-03-12T12:34:11.3725062Z [INFO] --- resources:3.0.1:testResources (default-testResources) @ spark-sql-columnar-shims-common --- +2026-03-12T12:34:11.3739752Z [INFO] Using 'UTF-8' encoding to copy filtered resources. +2026-03-12T12:34:11.3741898Z [INFO] skip non existing resourceDirectory /work/shims/common/src/test/resources +2026-03-12T12:34:11.3745028Z [INFO] Copying 3 resources +2026-03-12T12:34:11.3755386Z [INFO] +2026-03-12T12:34:11.3758704Z [INFO] --- scala:4.8.0:testCompile (scala-test-compile-first) @ spark-sql-columnar-shims-common --- +2026-03-12T12:34:11.4005102Z [WARNING] Expected all dependencies to require Scala version: 2.12.18 +2026-03-12T12:34:11.4006046Z [WARNING] org.scalatest:scalatest_2.12:3.2.16 requires scala version: 2.12.17 +2026-03-12T12:34:11.4006838Z [WARNING] Multiple versions of scala libraries detected! +2026-03-12T12:34:11.4010124Z [WARNING] Plugin is modifying testCompileSourceRoots through add(), which will not work in Maven 4.0.0. Use MavenProject.addTestCompileSourceRoot()/removeTestCompileSourceRoot() methods instead. If using a plugin, please upgrade to the latest version or report the issue to the plugin maintainer. To disable these warnings, set -Dmaven.project.sourceRoots.warningsDisabled=true on the command line, in the .mvn/maven.config file, or in project POM properties. +2026-03-12T12:34:11.4023360Z [INFO] No sources to compile +2026-03-12T12:34:11.4023760Z [INFO] +2026-03-12T12:34:11.4024440Z [INFO] --- compiler:3.14.1:testCompile (default-testCompile) @ spark-sql-columnar-shims-common --- +2026-03-12T12:34:11.4043578Z [INFO] No sources to compile +2026-03-12T12:34:11.4049129Z [INFO] +2026-03-12T12:34:11.4051669Z [INFO] --- surefire:3.3.0:test (default-test) @ spark-sql-columnar-shims-common --- +2026-03-12T12:34:11.4077232Z [INFO] Tests are skipped. +2026-03-12T12:34:11.4083385Z [INFO] +2026-03-12T12:34:11.4084428Z [INFO] --- jar:3.2.2:jar (default-jar) @ spark-sql-columnar-shims-common --- +2026-03-12T12:34:11.4182370Z [INFO] Building jar: /work/shims/common/target/spark-sql-columnar-shims-common-1.7.0-SNAPSHOT.jar +2026-03-12T12:34:11.4290461Z [INFO] +2026-03-12T12:34:11.4290821Z [INFO] --- jar:3.2.2:jar (default) @ spark-sql-columnar-shims-common --- +2026-03-12T12:34:11.4386077Z [INFO] Building jar: /work/shims/common/target/spark-sql-columnar-shims-common-1.7.0-SNAPSHOT-3.5.jar +2026-03-12T12:34:11.4461577Z [INFO] +2026-03-12T12:34:11.4462491Z [INFO] --- source:3.2.1:jar-no-fork (attach-sources) @ spark-sql-columnar-shims-common --- +2026-03-12T12:34:11.4497301Z [INFO] Building jar: /work/shims/common/target/spark-sql-columnar-shims-common-1.7.0-SNAPSHOT-sources.jar +2026-03-12T12:34:11.4635969Z [INFO] +2026-03-12T12:34:11.4637250Z [INFO] --- install:3.1.2:install (default-install) @ spark-sql-columnar-shims-common --- +2026-03-12T12:34:11.4649747Z [INFO] Installing /work/shims/common/pom.xml to /root/.m2/repository/org/apache/gluten/spark-sql-columnar-shims-common/1.7.0-SNAPSHOT/spark-sql-columnar-shims-common-1.7.0-SNAPSHOT.pom +2026-03-12T12:34:11.4656791Z [INFO] Installing /work/shims/common/target/spark-sql-columnar-shims-common-1.7.0-SNAPSHOT.jar to /root/.m2/repository/org/apache/gluten/spark-sql-columnar-shims-common/1.7.0-SNAPSHOT/spark-sql-columnar-shims-common-1.7.0-SNAPSHOT.jar +2026-03-12T12:34:11.4663786Z [INFO] Installing /work/shims/common/target/spark-sql-columnar-shims-common-1.7.0-SNAPSHOT-3.5.jar to /root/.m2/repository/org/apache/gluten/spark-sql-columnar-shims-common/1.7.0-SNAPSHOT/spark-sql-columnar-shims-common-1.7.0-SNAPSHOT-3.5.jar +2026-03-12T12:34:11.4667645Z [INFO] Installing /work/shims/common/target/spark-sql-columnar-shims-common-1.7.0-SNAPSHOT-sources.jar to /root/.m2/repository/org/apache/gluten/spark-sql-columnar-shims-common/1.7.0-SNAPSHOT/spark-sql-columnar-shims-common-1.7.0-SNAPSHOT-sources.jar +2026-03-12T12:34:11.4679021Z [INFO] +2026-03-12T12:34:11.4679562Z [INFO] ---------< org.apache.gluten:spark-sql-columnar-shims-spark35 >--------- +2026-03-12T12:34:11.4681879Z [INFO] Building Gluten Shims for Spark 3.5 1.7.0-SNAPSHOT [7/13] +2026-03-12T12:34:13.1000219Z [INFO] from shims/spark35/pom.xml +2026-03-12T12:34:13.1000872Z [INFO] --------------------------------[ jar ]--------------------------------- +2026-03-12T12:34:13.1001776Z [INFO] +2026-03-12T12:34:13.1003422Z [INFO] --- clean:3.4.0:clean (default-clean) @ spark-sql-columnar-shims-spark35 --- +2026-03-12T12:34:13.1011647Z [INFO] +2026-03-12T12:34:13.1013240Z [INFO] --- enforcer:3.3.0:enforce (enforce-maven-version) @ spark-sql-columnar-shims-spark35 --- +2026-03-12T12:34:13.1019231Z [INFO] +2026-03-12T12:34:13.1019911Z [INFO] --- enforcer:3.3.0:enforce (enforce-java-version) @ spark-sql-columnar-shims-spark35 --- +2026-03-12T12:34:13.1025686Z [INFO] +2026-03-12T12:34:13.1026347Z [INFO] --- enforcer:3.3.0:enforce (enforce-versions) @ spark-sql-columnar-shims-spark35 --- +2026-03-12T12:34:13.1031950Z [INFO] +2026-03-12T12:34:13.1033414Z [INFO] --- checkstyle:3.1.1:check (default) @ spark-sql-columnar-shims-spark35 --- +2026-03-12T12:34:13.1442590Z [INFO] You have 0 Checkstyle violations. +2026-03-12T12:34:13.1443275Z [INFO] +2026-03-12T12:34:13.1443840Z [INFO] --- scalastyle:1.0.0:check (default) @ spark-sql-columnar-shims-spark35 --- +2026-03-12T12:34:13.1513578Z [WARNING] testSourceDirectory is not specified or does not exist value=/work/shims/spark35/src/test/scala +2026-03-12T12:34:13.3822568Z Saving to outputFile=/work/shims/spark35/scalastyle-output.xml +2026-03-12T12:34:13.3830001Z Processed 28 file(s) +2026-03-12T12:34:13.3836767Z Found 0 errors +2026-03-12T12:34:13.3837071Z Found 0 warnings +2026-03-12T12:34:13.3837362Z Found 0 infos +2026-03-12T12:34:13.3837657Z Finished in 230 ms +2026-03-12T12:34:13.3837943Z [INFO] +2026-03-12T12:34:13.3838479Z [INFO] --- spotless:2.27.2:check (spotless-check) @ spark-sql-columnar-shims-spark35 --- +2026-03-12T12:34:13.8828837Z [INFO] Sorting file /tmp/pom6269599052255349930.xml +2026-03-12T12:34:13.8882130Z [INFO] Pom file is already sorted, exiting +2026-03-12T12:34:13.9086361Z [INFO] +2026-03-12T12:34:13.9087842Z [INFO] --- remote-resources:3.2.0:process (process-resource-bundles) @ spark-sql-columnar-shims-spark35 --- +2026-03-12T12:34:13.9099500Z [INFO] Preparing remote bundle org.apache.apache.resources:apache-jar-resource-bundle:1.5 +2026-03-12T12:34:13.9127980Z [INFO] Copying 3 resources from 1 bundle. +2026-03-12T12:34:13.9248098Z [INFO] +2026-03-12T12:34:13.9250227Z [INFO] --- resources:3.0.1:resources (default-resources) @ spark-sql-columnar-shims-spark35 --- +2026-03-12T12:34:13.9257206Z [INFO] Using 'UTF-8' encoding to copy filtered resources. +2026-03-12T12:34:13.9262013Z [INFO] Copying 1 resource +2026-03-12T12:34:13.9270511Z [INFO] Copying 3 resources +2026-03-12T12:34:13.9282072Z [INFO] +2026-03-12T12:34:13.9312654Z [INFO] --- scala:4.8.0:add-source (scala-compile-first) @ spark-sql-columnar-shims-spark35 --- +2026-03-12T12:34:13.9313941Z [INFO] Add Source directory: /work/shims/spark35/src/main/scala +2026-03-12T12:34:13.9315741Z [INFO] Add Test Source directory: /work/shims/spark35/src/test/scala +2026-03-12T12:34:13.9316331Z [INFO] +2026-03-12T12:34:13.9316941Z [INFO] --- scala:4.8.0:compile (scala-compile-first) @ spark-sql-columnar-shims-spark35 --- +2026-03-12T12:34:13.9608530Z [INFO] /work/shims/spark35/src/main/java:-1: info: compiling +2026-03-12T12:34:13.9609447Z [INFO] /work/shims/spark35/src/main/scala:-1: info: compiling +2026-03-12T12:34:13.9610355Z [INFO] Compiling 30 source files to /work/shims/spark35/target/classes at 1773318853960 +2026-03-12T12:34:13.9659084Z [INFO] compiler plugin: BasicArtifact(org.wartremover,wartremover_2.12,3.0.6,null) +2026-03-12T12:34:21.2926509Z [INFO] prepare-compile in 0.0 s +2026-03-12T12:34:21.2927452Z [INFO] compile in 7.3 s +2026-03-12T12:34:21.2928071Z [INFO] +2026-03-12T12:34:21.2928848Z [INFO] --- compiler:3.14.1:compile (default-compile) @ spark-sql-columnar-shims-spark35 --- +2026-03-12T12:34:21.2979153Z [INFO] Recompiling the module because of changed dependency. +2026-03-12T12:34:21.2997186Z [INFO] Compiling 2 source files with javac [debug target 1.8] to target/classes +2026-03-12T12:34:21.4460345Z [INFO] +2026-03-12T12:34:21.4461846Z [INFO] --- resources:3.0.1:testResources (default-testResources) @ spark-sql-columnar-shims-spark35 --- +2026-03-12T12:34:21.4476691Z [INFO] Using 'UTF-8' encoding to copy filtered resources. +2026-03-12T12:34:21.4477505Z [INFO] skip non existing resourceDirectory /work/shims/spark35/src/test/resources +2026-03-12T12:34:21.4478214Z [INFO] Copying 3 resources +2026-03-12T12:34:21.4482498Z [INFO] +2026-03-12T12:34:21.4484327Z [INFO] --- scala:4.8.0:testCompile (scala-test-compile-first) @ spark-sql-columnar-shims-spark35 --- +2026-03-12T12:34:21.4670321Z [WARNING] Plugin is modifying testCompileSourceRoots through add(), which will not work in Maven 4.0.0. Use MavenProject.addTestCompileSourceRoot()/removeTestCompileSourceRoot() methods instead. If using a plugin, please upgrade to the latest version or report the issue to the plugin maintainer. To disable these warnings, set -Dmaven.project.sourceRoots.warningsDisabled=true on the command line, in the .mvn/maven.config file, or in project POM properties. +2026-03-12T12:34:21.4673602Z [INFO] No sources to compile +2026-03-12T12:34:21.4673951Z [INFO] +2026-03-12T12:34:21.4674583Z [INFO] --- compiler:3.14.1:testCompile (default-testCompile) @ spark-sql-columnar-shims-spark35 --- +2026-03-12T12:34:21.4687799Z [INFO] No sources to compile +2026-03-12T12:34:21.4691029Z [INFO] +2026-03-12T12:34:21.4691849Z [INFO] --- surefire:3.3.0:test (default-test) @ spark-sql-columnar-shims-spark35 --- +2026-03-12T12:34:21.4712940Z [INFO] Tests are skipped. +2026-03-12T12:34:21.4732556Z [INFO] +2026-03-12T12:34:21.4734824Z [INFO] --- scalatest:2.2.0:test (test) @ spark-sql-columnar-shims-spark35 --- +2026-03-12T12:34:21.4736013Z [INFO] ScalaTest report directory: /work/shims/spark35/target/surefire-reports +2026-03-12T12:34:21.4738421Z [INFO] Tests are skipped. +2026-03-12T12:34:21.4738777Z [INFO] +2026-03-12T12:34:21.4739658Z [INFO] --- jar:3.2.2:jar (default-jar) @ spark-sql-columnar-shims-spark35 --- +2026-03-12T12:34:21.4845565Z [INFO] Building jar: /work/shims/spark35/target/spark-sql-columnar-shims-spark35-1.7.0-SNAPSHOT.jar +2026-03-12T12:34:21.5001022Z [INFO] +2026-03-12T12:34:21.5003568Z [INFO] --- jar:3.2.2:jar (default) @ spark-sql-columnar-shims-spark35 --- +2026-03-12T12:34:21.5109712Z [INFO] Building jar: /work/shims/spark35/target/spark-sql-columnar-shims-spark35-1.7.0-SNAPSHOT-3.5.jar +2026-03-12T12:34:21.5261758Z [INFO] +2026-03-12T12:34:21.5267754Z [INFO] --- source:3.2.1:jar-no-fork (attach-sources) @ spark-sql-columnar-shims-spark35 --- +2026-03-12T12:34:21.5295345Z [INFO] Building jar: /work/shims/spark35/target/spark-sql-columnar-shims-spark35-1.7.0-SNAPSHOT-sources.jar +2026-03-12T12:34:21.5496535Z [INFO] +2026-03-12T12:34:21.5498210Z [INFO] --- install:3.1.2:install (default-install) @ spark-sql-columnar-shims-spark35 --- +2026-03-12T12:34:21.5507508Z [INFO] Installing /work/shims/spark35/pom.xml to /root/.m2/repository/org/apache/gluten/spark-sql-columnar-shims-spark35/1.7.0-SNAPSHOT/spark-sql-columnar-shims-spark35-1.7.0-SNAPSHOT.pom +2026-03-12T12:34:21.5525596Z [INFO] Installing /work/shims/spark35/target/spark-sql-columnar-shims-spark35-1.7.0-SNAPSHOT.jar to /root/.m2/repository/org/apache/gluten/spark-sql-columnar-shims-spark35/1.7.0-SNAPSHOT/spark-sql-columnar-shims-spark35-1.7.0-SNAPSHOT.jar +2026-03-12T12:34:21.5534688Z [INFO] Installing /work/shims/spark35/target/spark-sql-columnar-shims-spark35-1.7.0-SNAPSHOT-3.5.jar to /root/.m2/repository/org/apache/gluten/spark-sql-columnar-shims-spark35/1.7.0-SNAPSHOT/spark-sql-columnar-shims-spark35-1.7.0-SNAPSHOT-3.5.jar +2026-03-12T12:34:21.5541552Z [INFO] Installing /work/shims/spark35/target/spark-sql-columnar-shims-spark35-1.7.0-SNAPSHOT-sources.jar to /root/.m2/repository/org/apache/gluten/spark-sql-columnar-shims-spark35/1.7.0-SNAPSHOT/spark-sql-columnar-shims-spark35-1.7.0-SNAPSHOT-sources.jar +2026-03-12T12:34:21.5569458Z [INFO] +2026-03-12T12:34:21.5572894Z [INFO] --------------------< org.apache.gluten:gluten-ui >--------------------- +2026-03-12T12:34:21.5576535Z [INFO] Building Gluten UI 1.7.0-SNAPSHOT [8/13] +2026-03-12T12:34:21.5577559Z [INFO] from gluten-ui/pom.xml +2026-03-12T12:34:21.5578101Z [INFO] --------------------------------[ jar ]--------------------------------- +2026-03-12T12:34:21.6245844Z [INFO] +2026-03-12T12:34:21.6246379Z [INFO] --- clean:3.4.0:clean (default-clean) @ gluten-ui --- +2026-03-12T12:34:21.6252097Z [INFO] +2026-03-12T12:34:21.6252651Z [INFO] --- enforcer:3.3.0:enforce (enforce-maven-version) @ gluten-ui --- +2026-03-12T12:34:21.6261706Z [INFO] +2026-03-12T12:34:21.6262266Z [INFO] --- enforcer:3.3.0:enforce (enforce-java-version) @ gluten-ui --- +2026-03-12T12:34:21.6269050Z [INFO] +2026-03-12T12:34:21.6269896Z [INFO] --- enforcer:3.3.0:enforce (enforce-versions) @ gluten-ui --- +2026-03-12T12:34:21.6278179Z [INFO] +2026-03-12T12:34:21.6279143Z [INFO] --- spotless:2.27.2:check (spotless-check) @ gluten-ui --- +2026-03-12T12:34:21.6729957Z [INFO] Sorting file /tmp/pom1797995141158216124.xml +2026-03-12T12:34:21.6781889Z [INFO] Pom file is already sorted, exiting +2026-03-12T12:34:21.8662052Z [INFO] +2026-03-12T12:34:21.8663894Z [INFO] --- remote-resources:3.2.0:process (process-resource-bundles) @ gluten-ui --- +2026-03-12T12:34:21.8682323Z [INFO] Preparing remote bundle org.apache.apache.resources:apache-jar-resource-bundle:1.5 +2026-03-12T12:34:21.8706591Z [INFO] Copying 3 resources from 1 bundle. +2026-03-12T12:34:21.8884605Z [INFO] +2026-03-12T12:34:21.8885654Z [INFO] --- resources:3.0.1:resources (default-resources) @ gluten-ui --- +2026-03-12T12:34:21.8886691Z [INFO] Using 'UTF-8' encoding to copy filtered resources. +2026-03-12T12:34:21.8887468Z [INFO] Copying 1 resource +2026-03-12T12:34:21.8899071Z [INFO] Copying 3 resources +2026-03-12T12:34:21.8900399Z [INFO] +2026-03-12T12:34:21.8901145Z [INFO] --- scala:4.8.0:add-source (scala-compile-first) @ gluten-ui --- +2026-03-12T12:34:21.8902528Z [INFO] Add Source directory: /work/gluten-ui/src/main/scala +2026-03-12T12:34:21.8903809Z [INFO] Add Test Source directory: /work/gluten-ui/src/test/scala +2026-03-12T12:34:21.8905032Z [INFO] +2026-03-12T12:34:21.8905578Z [INFO] --- scala:4.8.0:compile (scala-compile-first) @ gluten-ui --- +2026-03-12T12:34:21.9017627Z [INFO] /work/gluten-ui/src/main/scala:-1: info: compiling +2026-03-12T12:34:21.9018440Z [INFO] Compiling 6 source files to /work/gluten-ui/target/scala-2.12/classes at 1773318861901 +2026-03-12T12:34:21.9062365Z [INFO] compiler plugin: BasicArtifact(org.wartremover,wartremover_2.12,3.0.6,null) +2026-03-12T12:34:26.8109648Z [INFO] prepare-compile in 0.0 s +2026-03-12T12:34:26.8110114Z [INFO] compile in 4.9 s +2026-03-12T12:34:26.8110453Z [INFO] +2026-03-12T12:34:26.8110887Z [INFO] --- compiler:3.14.1:compile (default-compile) @ gluten-ui --- +2026-03-12T12:34:26.8140161Z [INFO] Recompiling the module because of changed dependency. +2026-03-12T12:34:26.8157255Z [INFO] +2026-03-12T12:34:26.8157942Z [INFO] --- resources:3.0.1:testResources (default-testResources) @ gluten-ui --- +2026-03-12T12:34:26.8164507Z [INFO] Using 'UTF-8' encoding to copy filtered resources. +2026-03-12T12:34:26.8165270Z [INFO] skip non existing resourceDirectory /work/gluten-ui/src/test/resources +2026-03-12T12:34:26.8167487Z [INFO] Copying 3 resources +2026-03-12T12:34:26.8176921Z [INFO] +2026-03-12T12:34:26.8178122Z [INFO] --- scala:4.8.0:testCompile (scala-test-compile-first) @ gluten-ui --- +2026-03-12T12:34:26.8269844Z [WARNING] Plugin is modifying testCompileSourceRoots through add(), which will not work in Maven 4.0.0. Use MavenProject.addTestCompileSourceRoot()/removeTestCompileSourceRoot() methods instead. If using a plugin, please upgrade to the latest version or report the issue to the plugin maintainer. To disable these warnings, set -Dmaven.project.sourceRoots.warningsDisabled=true on the command line, in the .mvn/maven.config file, or in project POM properties. +2026-03-12T12:34:26.8273400Z [INFO] No sources to compile +2026-03-12T12:34:26.8273774Z [INFO] +2026-03-12T12:34:26.8274298Z [INFO] --- compiler:3.14.1:testCompile (default-testCompile) @ gluten-ui --- +2026-03-12T12:34:26.8289027Z [INFO] No sources to compile +2026-03-12T12:34:26.8290106Z [INFO] +2026-03-12T12:34:26.8290692Z [INFO] --- surefire:3.3.0:test (default-test) @ gluten-ui --- +2026-03-12T12:34:26.8299836Z [INFO] Tests are skipped. +2026-03-12T12:34:26.8300229Z [INFO] +2026-03-12T12:34:26.8300610Z [INFO] --- jar:3.2.2:jar (default-jar) @ gluten-ui --- +2026-03-12T12:34:26.8348102Z [INFO] Building jar: /work/gluten-ui/target/gluten-ui-1.7.0-SNAPSHOT.jar +2026-03-12T12:34:26.8395330Z [INFO] +2026-03-12T12:34:26.8399098Z [INFO] --- jar:3.2.2:jar (default) @ gluten-ui --- +2026-03-12T12:34:26.8444006Z [INFO] Building jar: /work/gluten-ui/target/gluten-ui-1.7.0-SNAPSHOT-3.5.jar +2026-03-12T12:34:26.8498680Z [INFO] +2026-03-12T12:34:26.8504078Z [INFO] --- source:3.2.1:jar-no-fork (attach-sources) @ gluten-ui --- +2026-03-12T12:34:26.8528811Z [INFO] Building jar: /work/gluten-ui/target/gluten-ui-1.7.0-SNAPSHOT-sources.jar +2026-03-12T12:34:26.8599099Z [INFO] +2026-03-12T12:34:26.8599945Z [INFO] --- install:3.1.2:install (default-install) @ gluten-ui --- +2026-03-12T12:34:26.8607300Z [INFO] Installing /work/gluten-ui/pom.xml to /root/.m2/repository/org/apache/gluten/gluten-ui/1.7.0-SNAPSHOT/gluten-ui-1.7.0-SNAPSHOT.pom +2026-03-12T12:34:26.8612829Z [INFO] Installing /work/gluten-ui/target/gluten-ui-1.7.0-SNAPSHOT.jar to /root/.m2/repository/org/apache/gluten/gluten-ui/1.7.0-SNAPSHOT/gluten-ui-1.7.0-SNAPSHOT.jar +2026-03-12T12:34:26.8617905Z [INFO] Installing /work/gluten-ui/target/gluten-ui-1.7.0-SNAPSHOT-3.5.jar to /root/.m2/repository/org/apache/gluten/gluten-ui/1.7.0-SNAPSHOT/gluten-ui-1.7.0-SNAPSHOT-3.5.jar +2026-03-12T12:34:26.8622074Z [INFO] Installing /work/gluten-ui/target/gluten-ui-1.7.0-SNAPSHOT-sources.jar to /root/.m2/repository/org/apache/gluten/gluten-ui/1.7.0-SNAPSHOT/gluten-ui-1.7.0-SNAPSHOT-sources.jar +2026-03-12T12:34:26.8633360Z [INFO] +2026-03-12T12:34:26.8635064Z [INFO] -----------------< org.apache.gluten:gluten-substrait >----------------- +2026-03-12T12:34:26.8636055Z [INFO] Building Gluten Substrait 1.7.0-SNAPSHOT [9/13] +2026-03-12T12:34:26.8642142Z [INFO] from gluten-substrait/pom.xml +2026-03-12T12:34:26.8642761Z [INFO] --------------------------------[ jar ]--------------------------------- +2026-03-12T12:34:33.7310310Z [INFO] +2026-03-12T12:34:33.7311523Z [INFO] --- clean:3.4.0:clean (default-clean) @ gluten-substrait --- +2026-03-12T12:34:33.7320245Z [INFO] +2026-03-12T12:34:33.7321048Z [INFO] --- enforcer:3.3.0:enforce (enforce-maven-version) @ gluten-substrait --- +2026-03-12T12:34:33.7332449Z [INFO] +2026-03-12T12:34:33.7333320Z [INFO] --- enforcer:3.3.0:enforce (enforce-java-version) @ gluten-substrait --- +2026-03-12T12:34:33.7344745Z [INFO] +2026-03-12T12:34:33.7362169Z [INFO] --- enforcer:3.3.0:enforce (enforce-versions) @ gluten-substrait --- +2026-03-12T12:34:33.7363360Z [INFO] +2026-03-12T12:34:33.7364197Z [INFO] --- scalastyle:1.0.0:check (default) @ gluten-substrait --- +2026-03-12T12:34:35.8424312Z error file=/work/gluten-substrait/src/main/scala/org/apache/gluten/extension/columnar/validator/Validators.scala message= +2026-03-12T12:34:35.8425846Z Are you sure that you want to use Class.forName? In most cases, you should use Utils.classForName instead. +2026-03-12T12:34:35.8426780Z If you must use Class.forName, wrap the code block with +2026-03-12T12:34:35.8427354Z // scalastyle:off classforname +2026-03-12T12:34:35.8427803Z Class.forName(...) +2026-03-12T12:34:35.8428175Z // scalastyle:on classforname +2026-03-12T12:34:35.8428587Z line=227 column=33 +2026-03-12T12:34:35.8429117Z Saving to outputFile=/work/gluten-substrait/scalastyle-output.xml +2026-03-12T12:34:35.8458866Z Processed 177 file(s) +2026-03-12T12:34:35.8459470Z Found 1 errors +2026-03-12T12:34:35.8460222Z Found 0 warnings +2026-03-12T12:34:35.8460770Z Found 0 infos +2026-03-12T12:34:35.8461445Z Finished in 2105 ms +2026-03-12T12:34:35.8472686Z [INFO] ------------------------------------------------------------------------ +2026-03-12T12:34:35.8479120Z [INFO] Reactor Summary for Gluten Parent Pom 1.7.0-SNAPSHOT: +2026-03-12T12:34:35.8483224Z [INFO] +2026-03-12T12:34:35.8486649Z [INFO] Gluten Parent Pom .................................. SUCCESS [ 21.449 s] +2026-03-12T12:34:35.8487463Z [INFO] Gluten Ras ......................................... SUCCESS [ 37.920 s] +2026-03-12T12:34:35.8488246Z [INFO] Gluten Ras Common .................................. SUCCESS [ 35.320 s] +2026-03-12T12:34:35.8489045Z [INFO] Gluten Core ........................................ SUCCESS [01:01 min] +2026-03-12T12:34:35.8489809Z [INFO] Gluten Shims ....................................... SUCCESS [ 0.438 s] +2026-03-12T12:34:35.8490601Z [INFO] Gluten Shims Common ................................ SUCCESS [ 6.481 s] +2026-03-12T12:34:35.8491566Z [INFO] Gluten Shims for Spark 3.5 ......................... SUCCESS [ 10.088 s] +2026-03-12T12:34:35.8492358Z [INFO] Gluten UI .......................................... SUCCESS [ 5.307 s] +2026-03-12T12:34:35.8493093Z [INFO] Gluten Substrait ................................... FAILURE [ 8.984 s] +2026-03-12T12:34:35.8493838Z [INFO] Gluten Arrow ....................................... SKIPPED +2026-03-12T12:34:35.8494544Z [INFO] Gluten Backends Velox .............................. SKIPPED +2026-03-12T12:34:35.8495240Z [INFO] Gluten Package ..................................... SKIPPED +2026-03-12T12:34:35.8495922Z [INFO] Gluten Ras Planner ................................. SKIPPED +2026-03-12T12:34:35.8503300Z [INFO] ------------------------------------------------------------------------ +2026-03-12T12:34:35.8504276Z [INFO] BUILD FAILURE +2026-03-12T12:34:35.8505365Z [INFO] ------------------------------------------------------------------------ +2026-03-12T12:34:35.8507234Z [INFO] Total time: 03:12 min +2026-03-12T12:34:35.8507638Z [INFO] Finished at: 2026-03-12T12:34:35Z +2026-03-12T12:34:35.8510341Z [INFO] ------------------------------------------------------------------------ +2026-03-12T12:34:35.8512404Z [ERROR] Failed to execute goal org.scalastyle:scalastyle-maven-plugin:1.0.0:check (default) on project gluten-substrait: Failed during scalastyle execution: You have 1 Scalastyle violation(s). -> [Help 1] +2026-03-12T12:34:35.8513684Z [ERROR] +2026-03-12T12:34:35.8514135Z [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. +2026-03-12T12:34:35.8520914Z [ERROR] Re-run Maven using the -X switch to enable full debug logging. +2026-03-12T12:34:35.8524012Z [ERROR] +2026-03-12T12:34:35.8524769Z [ERROR] For more information about the errors and possible solutions, please read the following articles: +2026-03-12T12:34:35.8525942Z [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException +2026-03-12T12:34:35.8526664Z [ERROR] +2026-03-12T12:34:35.8527176Z [ERROR] After correcting the problems, you can resume the build with the command +2026-03-12T12:34:35.8527884Z [ERROR] mvn -rf :gluten-substrait +2026-03-12T12:34:36.0373981Z ##[error]Process completed with exit code 1. +2026-03-12T12:34:36.0469673Z Post job cleanup. +2026-03-12T12:34:36.1469021Z [command]/usr/bin/git version +2026-03-12T12:34:36.1506193Z git version 2.53.0 +2026-03-12T12:34:36.1549631Z Temporarily overriding HOME='/home/runner/work/_temp/626aa1d7-15aa-41dd-8324-657a8234cdb9' before making global git config changes +2026-03-12T12:34:36.1550688Z Adding repository directory to the temporary git global config as a safe directory +2026-03-12T12:34:36.1563227Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/gluten/gluten +2026-03-12T12:34:36.1597591Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand +2026-03-12T12:34:36.1629353Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" +2026-03-12T12:34:36.1879488Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader +2026-03-12T12:34:36.1901105Z http.https://github.com/.extraheader +2026-03-12T12:34:36.1913751Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader +2026-03-12T12:34:36.1943853Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" +2026-03-12T12:34:36.2187846Z [command]/usr/bin/git config --local --name-only --get-regexp ^includeIf\.gitdir: +2026-03-12T12:34:36.2219306Z [command]/usr/bin/git submodule foreach --recursive git config --local --show-origin --name-only --get-regexp remote.origin.url +2026-03-12T12:34:36.2597129Z Cleaning up orphan processes +2026-03-12T12:34:36.2937663Z ##[warning]Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, actions/download-artifact@v4. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/