sercanCyberVision opened a new pull request, #541:
URL: https://github.com/apache/tez/pull/541

   **SOLUTION**
   Upgraded commons-io from `2.16.0` to `2.22.0`, the latest version available 
at the moment.
   
   **CHECKS**
   Dependency tree before the upgrade:
   ```
   > mvn dependency:tree -Dincludes=commons-io:* | grep 'commons-io:commons-io'
   [INFO]    \- commons-io:commons-io:jar:2.16.0:compile
   [INFO] \- commons-io:commons-io:jar:2.16.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.16.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.16.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.16.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.16.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.16.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.16.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.16.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.16.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.16.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.16.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.16.0:compile
   [INFO]       \- commons-io:commons-io:jar:2.16.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.16.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.16.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.16.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.16.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.16.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.16.0:compile
   ```
   
   Dependency tree after the upgrade:
   ```
   > mvn dependency:tree -Dincludes=commons-io:* | grep 'commons-io:commons-io'
   [INFO]    \- commons-io:commons-io:jar:2.22.0:compile
   [INFO] \- commons-io:commons-io:jar:2.22.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.22.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.22.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.22.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.22.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.22.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.22.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.22.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.22.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.22.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.22.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.22.0:compile
   [INFO]       \- commons-io:commons-io:jar:2.22.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.22.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.22.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.22.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.22.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.22.0:compile
   [INFO]    \- commons-io:commons-io:jar:2.22.0:compile
   ```
   
   Verified that both Tez distributions contain the upgraded dependency:
   ```
   > ll tez-dist/target/tez-1.0.0-SNAPSHOT/lib/ | grep commons-io
   -rw-r--r-- 1  609182 Jan  9  2026 commons-io-2.22.0.jar
   > ll tez-dist/target/tez-1.0.0-SNAPSHOT-minimal/lib/ | grep commons-io
   -rw-r--r-- 1  609182 Jan  9  2026 commons-io-2.22.0.jar
   ```
   
   Basic functionality test with Hive 4.2.1:
   ```
   hive> CREATE TABLE test (id INT);
   Time taken: 1.276 seconds
   hive> INSERT INTO test VALUES (1);
   Total jobs = 1
   Launching Job 1 out of 1
   Status: Running (Executing on YARN cluster with App id 
application_1790085661540_0001)
   
----------------------------------------------------------------------------------------------
           VERTICES      MODE        STATUS  TOTAL  COMPLETED  RUNNING  PENDING 
 FAILED  KILLED  
   
----------------------------------------------------------------------------------------------
   Map 1 .......... container     SUCCEEDED      1          1        0        0 
      0       0  
   Reducer 2 ...... container     SUCCEEDED      1          1        0        0 
      0       0  
   
----------------------------------------------------------------------------------------------
   VERTICES: 02/02  [==========================>>] 100%  ELAPSED TIME: 5.49 s   
  
   
----------------------------------------------------------------------------------------------
   Loading data to table default.test
   Time taken to move files:     0 ms
   StatsTask took 206
   Time taken: 7.473 seconds
   hive>
   ```


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

To unsubscribe, e-mail: [email protected]

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

Reply via email to