You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by GitBox <gi...@apache.org> on 2022/07/21 19:29:50 UTC

[GitHub] [hudi] the-other-tim-brown opened a new pull request, #6170: try adding in propery enabling bridge

the-other-tim-brown opened a new pull request, #6170:
URL: https://github.com/apache/hudi/pull/6170

   ## *Tips*
   - *Thank you very much for contributing to Apache Hudi.*
   - *Please review https://hudi.apache.org/contribute/how-to-contribute before opening a pull request.*
   
   ## What is the purpose of the pull request
   
   *(For example: This pull request adds quick-start document.)*
   
   ## Brief change log
   
   *(for example:)*
     - *Modify AnnotationLocation checkstyle rule in checkstyle.xml*
   
   ## Verify this pull request
   
   *(Please pick either of the following options)*
   
   This pull request is a trivial rework / code cleanup without any test coverage.
   
   *(or)*
   
   This pull request is already covered by existing tests, such as *(please describe tests)*.
   
   (or)
   
   This change added tests and can be verified as follows:
   
   *(example:)*
   
     - *Added integration tests for end-to-end.*
     - *Added HoodieClientWriteTest to verify the change.*
     - *Manually verified the change by running a job locally.*
   
   ## Committer checklist
   
    - [ ] Has a corresponding JIRA in PR title & commit
    
    - [ ] Commit message is descriptive of the change
    
    - [ ] CI is green
   
    - [ ] Necessary doc changes done or have another open PR
          
    - [ ] For large changes, please consider breaking it into sub-tasks under an umbrella JIRA.
   


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] xushiyan commented on a diff in pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
xushiyan commented on code in PR #6170:
URL: https://github.com/apache/hudi/pull/6170#discussion_r947300784


##########
hudi-client/hudi-client-common/src/test/java/org/apache/hudi/callback/http/TestCallbackHttpClient.java:
##########
@@ -70,7 +71,7 @@ public class TestCallbackHttpClient {
 
   @BeforeEach
   void prepareAppender() {
-    when(appender.getName()).thenReturn("MockAppender");
+    when(appender.getName()).thenReturn("MockAppender-" + UUID.randomUUID());

Review Comment:
   good catch!



##########
hudi-client/hudi-client-common/src/main/resources/log4j2.properties:
##########
@@ -15,9 +15,16 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 ###
-log4j.rootLogger=INFO, A1
-# A1 is set to be a ConsoleAppender.
-log4j.appender.A1=org.apache.log4j.ConsoleAppender
-# A1 uses PatternLayout.
-log4j.appender.A1.layout=org.apache.log4j.PatternLayout
-log4j.appender.A1.layout.ConversionPattern=%-4r [%t] %-5p %c %x - %m%n
+status = warn
+name = HudiConsoleLog

Review Comment:
   it anyway looks like an anti-pattern to bundle production log properties. we should remove it and mark it as a migration item for next major release, if it breaks anything.



##########
hudi-client/hudi-client-common/pom.xml:
##########
@@ -193,6 +193,12 @@
     </dependency>
 
     <!-- Test -->
+    <dependency>
+      <groupId>org.apache.hudi</groupId>
+      <artifactId>hudi-tests-common</artifactId>
+      <version>${project.version}</version>
+      <scope>test</scope>
+    </dependency>
     <dependency>
       <groupId>org.junit.jupiter</groupId>

Review Comment:
   still an exception in `TestFSUtils` where import org.junit.Rule; is used to inject env var, where it's not doable in junit 5, last time i checked.



##########
docker/demo/config/log4j2.properties:
##########
@@ -0,0 +1,60 @@
+###
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+###
+status = warn
+name = HudiConsoleLog
+
+# Set everything to be logged to the console
+appender.console.type = Console
+appender.console.name = CONSOLE
+appender.console.layout.type = PatternLayout
+appender.console.layout.pattern = %d{yy/MM/dd HH:mm:ss} %p %c{1}: %m%n
+
+# Root logger level
+rootLogger.level = warn
+# Root logger referring to console appender
+rootLogger.appenderRef.stdout.ref = CONSOLE
+
+# Set the default spark-shell log level to WARN. When running the spark-shell, the
+# log level for this class is used to overwrite the root logger's log level, so that
+# the user can have different defaults for the shell and regular Spark apps.
+logger.apache_spark_repl.name = org.apache.spark.repl.Main
+logger.apache_spark_repl.level = warn
+# Set logging of integration testsuite to INFO level
+logger.hudi_integ.name = org.apache.hudi.integ.testsuite
+logger.hudi_integ.level = info
+# Settings to quiet third party logs that are too verbose
+logger.apache_spark_jetty.name = org.spark_project.jetty
+logger.apache_spark_jetty.level = warn
+logger.apache_spark_jett_lifecycle.name = org.spark_project.jetty.util.component.AbstractLifeCycle

Review Comment:
   is this about allowing users to fine-tune the logging level for different loggers? i felt in Hudi we don't have to maintain these. users should just override for the loggers they need.



-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1221426205

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "1b5f4749d2a3146b825e3ca14a77535d51178c05",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10842",
       "triggerID" : "1b5f4749d2a3146b825e3ca14a77535d51178c05",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1b5f4749d2a3146b825e3ca14a77535d51178c05",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10842",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 1b5f4749d2a3146b825e3ca14a77535d51178c05 Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10842) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1212583413

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * a32918090cf1fa4d518090cd146506685f8c18e7 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367) 
   * 644e76302818a3a4845188f23bd9bf4e404eba5e Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] alexeykudinkin commented on a diff in pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
alexeykudinkin commented on code in PR #6170:
URL: https://github.com/apache/hudi/pull/6170#discussion_r944599697


##########
.github/workflows/bot.yml:
##########
@@ -9,6 +9,8 @@ on:
     branches:
       - master
       - 'release-*'
+env:
+  MVN_ARGS: -ntp -B -V -Pwarn-log -Dorg.slf4j.simpleLogger.log.org.apache.maven.plugins.shade=warn -Dorg.slf4j.simpleLogger.log.org.apache.maven.plugins.dependency=warn

Review Comment:
   I think that would be preferred



-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1194992123

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 95500ad9b22d2dde011cf8456f212c813375c594 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344) 
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] xushiyan merged pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
xushiyan merged PR #6170:
URL: https://github.com/apache/hudi/pull/6170


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1195943044

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * 9439176a9aeb4945be37deb6d2d4decaa4d4efc5 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1195995704

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * 9439176a9aeb4945be37deb6d2d4decaa4d4efc5 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363) 
   * a32918090cf1fa4d518090cd146506685f8c18e7 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] the-other-tim-brown commented on a diff in pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
the-other-tim-brown commented on code in PR #6170:
URL: https://github.com/apache/hudi/pull/6170#discussion_r940863541


##########
hudi-integ-test/pom.xml:
##########
@@ -525,24 +519,9 @@
         </executions>
       </plugin>
       <plugin>
-      <groupId>org.scalatest</groupId>

Review Comment:
   I moved the configuration up to the parent pom so we didn't need to define the configuration in ever module that wanted to use the plugin. This allows us to also specify the logging configuration once instead of hoping each module sets it properly.



-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: try adding in propery enabling bridge

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1192793557

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * c7f439785df509ece3725b7b5f71a12f485cc726 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189) 
   * 7f37493dd7f8d24039131cd4e4b49c7a1da7c28f UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: try adding in propery enabling bridge

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1192828587

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 7f37493dd7f8d24039131cd4e4b49c7a1da7c28f Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1194386859

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 6bb9f9ab93a77ac17a3cac40805ef284294948f9 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1194458192

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 111dd8be2ab5f681f1c79a36ea831a21dd28443b Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1193609887

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 16ff6fba9e82e35bfb202902f22e6c59ade998ff Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: try adding in propery enabling bridge

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1191885353

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 956a4b05a1a7461d5278e94869cde0fd619b29c2 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1195024682

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 95500ad9b22d2dde011cf8456f212c813375c594 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344) 
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e3a54b8c03ab0b05c9f23a59003dabc151dbd25c UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1195735669

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e3a54b8c03ab0b05c9f23a59003dabc151dbd25c Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346) 
   * 69f96eafbf0092d70b48be559520bab2d28aa214 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1223422846

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "520b1b54c37ce6378047a55f650e309d6feb89d1",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10885",
       "triggerID" : "520b1b54c37ce6378047a55f650e309d6feb89d1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "520b1b54c37ce6378047a55f650e309d6feb89d1",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10885",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 520b1b54c37ce6378047a55f650e309d6feb89d1 Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10885) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1223054019

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "1b5f4749d2a3146b825e3ca14a77535d51178c05",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10842",
       "triggerID" : "1b5f4749d2a3146b825e3ca14a77535d51178c05",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1b5f4749d2a3146b825e3ca14a77535d51178c05",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10842",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "520b1b54c37ce6378047a55f650e309d6feb89d1",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10885",
       "triggerID" : "520b1b54c37ce6378047a55f650e309d6feb89d1",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1b5f4749d2a3146b825e3ca14a77535d51178c05 Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10842) 
   * 520b1b54c37ce6378047a55f650e309d6feb89d1 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10885) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1220954283

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10794",
       "triggerID" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10809",
       "triggerID" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10812",
       "triggerID" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10828",
       "triggerID" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "90e2512b63a62434b9d5a427dc6758b653adead2",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10829",
       "triggerID" : "90e2512b63a62434b9d5a427dc6758b653adead2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "625d6c767679e9ac2bcd5727003217ca6cb7667f",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10831",
       "triggerID" : "625d6c767679e9ac2bcd5727003217ca6cb7667f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ea168c835001e82b78d91e4f6c8850f43b339b29",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "ea168c835001e82b78d91e4f6c8850f43b339b29",
       "triggerType" : "PUSH"
     }, {
       "hash" : "555cc3c467c4056da9455088c21e22cfd7465168",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10836",
       "triggerID" : "555cc3c467c4056da9455088c21e22cfd7465168",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * 53c4195ab7d36e4b369b368584ec1cca55d2c2e7 UNKNOWN
   * 5963b2339ae8765df0ad9972a3babc560fc2c841 UNKNOWN
   * 90e2512b63a62434b9d5a427dc6758b653adead2 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10829) 
   * 625d6c767679e9ac2bcd5727003217ca6cb7667f Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10831) 
   * ea168c835001e82b78d91e4f6c8850f43b339b29 UNKNOWN
   * 555cc3c467c4056da9455088c21e22cfd7465168 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10836) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1219946356

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10794",
       "triggerID" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10809",
       "triggerID" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10812",
       "triggerID" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * 53c4195ab7d36e4b369b368584ec1cca55d2c2e7 UNKNOWN
   * c272a3a25ecf1bf461de21f518f87d05d1d65f2a Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10812) 
   * 5963b2339ae8765df0ad9972a3babc560fc2c841 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1219805320

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10794",
       "triggerID" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10809",
       "triggerID" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10812",
       "triggerID" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * 53c4195ab7d36e4b369b368584ec1cca55d2c2e7 UNKNOWN
   * fe71d7fd4e58b036e10d56c8b6f2baeeaf539214 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10809) 
   * c272a3a25ecf1bf461de21f518f87d05d1d65f2a Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10812) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] the-other-tim-brown commented on a diff in pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
the-other-tim-brown commented on code in PR #6170:
URL: https://github.com/apache/hudi/pull/6170#discussion_r940855205


##########
.github/workflows/bot.yml:
##########
@@ -9,6 +9,8 @@ on:
     branches:
       - master
       - 'release-*'
+env:
+  MVN_ARGS: -ntp -B -V -Pwarn-log -Dorg.slf4j.simpleLogger.log.org.apache.maven.plugins.shade=warn -Dorg.slf4j.simpleLogger.log.org.apache.maven.plugins.dependency=warn

Review Comment:
   For the shade and dependency plugin, I didn't find a way to specify the log level in the configuration of the plugin unfortunately. We could put these in a basic logging configuration file that maven uses as well though.
   
   For the `-ntp -B -V`, that will need to be here



-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] the-other-tim-brown commented on a diff in pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
the-other-tim-brown commented on code in PR #6170:
URL: https://github.com/apache/hudi/pull/6170#discussion_r940862177


##########
hudi-examples/hudi-examples-spark/pom.xml:
##########
@@ -230,6 +230,27 @@
                 </exclusion>
             </exclusions>
         </dependency>
+        <!-- Logging dependencies -->
+        <dependency>
+            <groupId>org.apache.logging.log4j</groupId>

Review Comment:
   This log4j-1.2-api jar specifically contains implementations of the log4j api's that make it compatible with log4j2. I don't expect Spark to provide these for us. 
   
   The other dependencies below are either logging APIs which we should declare if we directly rely on them and other bridges that were required to make the examples log properly. 



-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: try adding in propery enabling bridge

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1192879893

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 7f37493dd7f8d24039131cd4e4b49c7a1da7c28f Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213) 
   * a0f4695ecec476ec988dab70f6aceb00ab0f69c5 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: try adding in propery enabling bridge

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1192058574

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 956a4b05a1a7461d5278e94869cde0fd619b29c2 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160) 
   * 2a317eb12e77099f064d2bda72dc1b7d3e3306b2 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169) 
   * 86690888d4002b8fe3aa8ef07b8f4347cc615304 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1223379502

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "520b1b54c37ce6378047a55f650e309d6feb89d1",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10885",
       "triggerID" : "520b1b54c37ce6378047a55f650e309d6feb89d1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "520b1b54c37ce6378047a55f650e309d6feb89d1",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 520b1b54c37ce6378047a55f650e309d6feb89d1 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10885) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1223228803

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "1b5f4749d2a3146b825e3ca14a77535d51178c05",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10842",
       "triggerID" : "1b5f4749d2a3146b825e3ca14a77535d51178c05",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1b5f4749d2a3146b825e3ca14a77535d51178c05",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10842",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "520b1b54c37ce6378047a55f650e309d6feb89d1",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10885",
       "triggerID" : "520b1b54c37ce6378047a55f650e309d6feb89d1",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 520b1b54c37ce6378047a55f650e309d6feb89d1 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10885) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] the-other-tim-brown commented on a diff in pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
the-other-tim-brown commented on code in PR #6170:
URL: https://github.com/apache/hudi/pull/6170#discussion_r943996096


##########
hudi-cli/pom.xml:
##########
@@ -212,23 +212,14 @@
       <groupId>org.apache.logging.log4j</groupId>
       <artifactId>log4j-1.2-api</artifactId>
     </dependency>
-
-    <dependency>
-      <groupId>org.apache.logging.log4j</groupId>
-      <artifactId>log4j-core</artifactId>
-      <scope>test</scope>
-    </dependency>
-
     <dependency>
-      <groupId>org.apache.logging.log4j</groupId>
-      <artifactId>log4j-api</artifactId>
-      <scope>test</scope>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jul-to-slf4j</artifactId>
     </dependency>
 
     <dependency>
       <groupId>org.apache.logging.log4j</groupId>
       <artifactId>log4j-slf4j-impl</artifactId>
-      <scope>test</scope>

Review Comment:
   Is the cli package used exclusively with query engines? I can imagine it being used as a standalone package as well



-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1195935096

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * 69f96eafbf0092d70b48be559520bab2d28aa214 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360) 
   * 9439176a9aeb4945be37deb6d2d4decaa4d4efc5 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1195730088

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e3a54b8c03ab0b05c9f23a59003dabc151dbd25c Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346) 
   * 69f96eafbf0092d70b48be559520bab2d28aa214 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1193533627

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * dbac26f88b14a8df88eba2ca70d566f2db53e412 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286) 
   * 34485e3a7df2712077f5987f930b7a6fa33a3986 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: try adding in propery enabling bridge

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1192024282

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 956a4b05a1a7461d5278e94869cde0fd619b29c2 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160) 
   * 2a317eb12e77099f064d2bda72dc1b7d3e3306b2 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: try adding in propery enabling bridge

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1191986251

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 956a4b05a1a7461d5278e94869cde0fd619b29c2 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: try adding in propery enabling bridge

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1192089638

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 2a317eb12e77099f064d2bda72dc1b7d3e3306b2 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169) 
   * 86690888d4002b8fe3aa8ef07b8f4347cc615304 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] alexeykudinkin commented on a diff in pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
alexeykudinkin commented on code in PR #6170:
URL: https://github.com/apache/hudi/pull/6170#discussion_r942634341


##########
hudi-examples/hudi-examples-spark/pom.xml:
##########
@@ -230,6 +230,27 @@
                 </exclusion>
             </exclusions>
         </dependency>
+        <!-- Logging dependencies -->
+        <dependency>
+            <groupId>org.apache.logging.log4j</groupId>

Review Comment:
   If it's for ourselves -- let's add it to "hudi-common" to avoid pasting it across the board.
   If we're adding it for our dependencies, then we should not.



-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] xushiyan commented on a diff in pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
xushiyan commented on code in PR #6170:
URL: https://github.com/apache/hudi/pull/6170#discussion_r951851228


##########
hudi-tests-common/pom.xml:
##########
@@ -0,0 +1,71 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+       http://www.apache.org/licenses/LICENSE-2.0
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <parent>
+        <artifactId>hudi</artifactId>
+        <groupId>org.apache.hudi</groupId>
+        <version>0.13.0-SNAPSHOT</version>
+    </parent>
+
+    <modelVersion>4.0.0</modelVersion>
+    <artifactId>hudi-tests-common</artifactId>
+
+    <properties>
+        <main.basedir>${project.parent.basedir}</main.basedir>
+    </properties>
+
+    <build>
+        <resources>
+            <resource>
+                <!-- Share logging configs and other resources for testing across all modules -->
+                <directory>src/main/resources</directory>
+            </resource>
+        </resources>
+
+        <plugins>
+
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </build>
+
+    <dependencies>
+        <!-- All modules will need to include log4j-core during test runtime to properly log -->
+        <dependency>
+            <groupId>org.apache.logging.log4j</groupId>
+            <artifactId>log4j-core</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <!-- Add some logging bridges that are needed at runtime for tests -->
+        <dependency>
+            <groupId>org.apache.logging.log4j</groupId>
+            <artifactId>log4j-slf4j-impl</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>jul-to-slf4j</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <!-- Required for groups/excludeGroups support in the maven surefire plugin -->
+        <dependency>
+            <groupId>org.junit.jupiter</groupId>

Review Comment:
   why not put all org.junit.* deps here? you may do it separately.



-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1193577362

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 34485e3a7df2712077f5987f930b7a6fa33a3986 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294) 
   * 16ff6fba9e82e35bfb202902f22e6c59ade998ff Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1194901780

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 943826e562500bd14abc5143d7f829337facea86 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1194984494

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 943826e562500bd14abc5143d7f829337facea86 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338) 
   * 95500ad9b22d2dde011cf8456f212c813375c594 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1221061542

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10794",
       "triggerID" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10809",
       "triggerID" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10812",
       "triggerID" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10828",
       "triggerID" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "90e2512b63a62434b9d5a427dc6758b653adead2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10829",
       "triggerID" : "90e2512b63a62434b9d5a427dc6758b653adead2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "625d6c767679e9ac2bcd5727003217ca6cb7667f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10831",
       "triggerID" : "625d6c767679e9ac2bcd5727003217ca6cb7667f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ea168c835001e82b78d91e4f6c8850f43b339b29",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "ea168c835001e82b78d91e4f6c8850f43b339b29",
       "triggerType" : "PUSH"
     }, {
       "hash" : "555cc3c467c4056da9455088c21e22cfd7465168",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10836",
       "triggerID" : "555cc3c467c4056da9455088c21e22cfd7465168",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7330577b3d9223c6ccd9fa7573e00c6a7436658c",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "7330577b3d9223c6ccd9fa7573e00c6a7436658c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1b5f4749d2a3146b825e3ca14a77535d51178c05",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1b5f4749d2a3146b825e3ca14a77535d51178c05",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * 53c4195ab7d36e4b369b368584ec1cca55d2c2e7 UNKNOWN
   * 5963b2339ae8765df0ad9972a3babc560fc2c841 UNKNOWN
   * 625d6c767679e9ac2bcd5727003217ca6cb7667f Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10831) 
   * ea168c835001e82b78d91e4f6c8850f43b339b29 UNKNOWN
   * 555cc3c467c4056da9455088c21e22cfd7465168 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10836) 
   * 7330577b3d9223c6ccd9fa7573e00c6a7436658c UNKNOWN
   * 1b5f4749d2a3146b825e3ca14a77535d51178c05 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1221424318

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "1b5f4749d2a3146b825e3ca14a77535d51178c05",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10842",
       "triggerID" : "1b5f4749d2a3146b825e3ca14a77535d51178c05",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1b5f4749d2a3146b825e3ca14a77535d51178c05",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10842",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 1b5f4749d2a3146b825e3ca14a77535d51178c05 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10842) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1218459979

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * 53c4195ab7d36e4b369b368584ec1cca55d2c2e7 UNKNOWN
   * a71b8d7629b59bd969c3a10e5c90dfd020cf084f Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793) 
   * 2b9408365f959cba49d9aae5fe0a0340eaed2cc2 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1218177009

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * ab07f137f867a065b5ae3ab422fc3a498d1e888d Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792) 
   * 53c4195ab7d36e4b369b368584ec1cca55d2c2e7 UNKNOWN
   * a71b8d7629b59bd969c3a10e5c90dfd020cf084f Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] the-other-tim-brown commented on a diff in pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
the-other-tim-brown commented on code in PR #6170:
URL: https://github.com/apache/hudi/pull/6170#discussion_r943995381


##########
.github/workflows/bot.yml:
##########
@@ -9,6 +9,8 @@ on:
     branches:
       - master
       - 'release-*'
+env:
+  MVN_ARGS: -ntp -B -V -Pwarn-log -Dorg.slf4j.simpleLogger.log.org.apache.maven.plugins.shade=warn -Dorg.slf4j.simpleLogger.log.org.apache.maven.plugins.dependency=warn

Review Comment:
   We can specify a logging configuration for maven itself if we want and configure the simple logger there



-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] the-other-tim-brown commented on a diff in pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
the-other-tim-brown commented on code in PR #6170:
URL: https://github.com/apache/hudi/pull/6170#discussion_r944002751


##########
hudi-client/hudi-client-common/src/main/resources/log4j2.properties:
##########
@@ -15,9 +15,16 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 ###
-log4j.rootLogger=INFO, A1
-# A1 is set to be a ConsoleAppender.
-log4j.appender.A1=org.apache.log4j.ConsoleAppender
-# A1 uses PatternLayout.
-log4j.appender.A1.layout=org.apache.log4j.PatternLayout
-log4j.appender.A1.layout.ConversionPattern=%-4r [%t] %-5p %c %x - %m%n
+status = warn
+name = HudiConsoleLog

Review Comment:
   @alexeykudinkin is this something that you're going to take on? I don't have much context here



-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1212613982

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * 644e76302818a3a4845188f23bd9bf4e404eba5e Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740) 
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * b2d6b015aa283cba1949665771c8fb6caddb7b1f Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1193573133

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 34485e3a7df2712077f5987f930b7a6fa33a3986 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294) 
   * 16ff6fba9e82e35bfb202902f22e6c59ade998ff UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1193394783

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1a2d20c64958d09d8c9407e32cdb892ee4669d1b Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1194441918

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 6bb9f9ab93a77ac17a3cac40805ef284294948f9 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322) 
   * 111dd8be2ab5f681f1c79a36ea831a21dd28443b UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1220889292

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10794",
       "triggerID" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10809",
       "triggerID" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10812",
       "triggerID" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10828",
       "triggerID" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "90e2512b63a62434b9d5a427dc6758b653adead2",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10829",
       "triggerID" : "90e2512b63a62434b9d5a427dc6758b653adead2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "625d6c767679e9ac2bcd5727003217ca6cb7667f",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10831",
       "triggerID" : "625d6c767679e9ac2bcd5727003217ca6cb7667f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ea168c835001e82b78d91e4f6c8850f43b339b29",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "ea168c835001e82b78d91e4f6c8850f43b339b29",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * 53c4195ab7d36e4b369b368584ec1cca55d2c2e7 UNKNOWN
   * 5963b2339ae8765df0ad9972a3babc560fc2c841 UNKNOWN
   * 90e2512b63a62434b9d5a427dc6758b653adead2 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10829) 
   * 625d6c767679e9ac2bcd5727003217ca6cb7667f Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10831) 
   * ea168c835001e82b78d91e4f6c8850f43b339b29 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1218169779

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * ab07f137f867a065b5ae3ab422fc3a498d1e888d Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792) 
   * 53c4195ab7d36e4b369b368584ec1cca55d2c2e7 UNKNOWN
   * a71b8d7629b59bd969c3a10e5c90dfd020cf084f UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] xushiyan commented on a diff in pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
xushiyan commented on code in PR #6170:
URL: https://github.com/apache/hudi/pull/6170#discussion_r949656789


##########
docker/demo/config/log4j2.properties:
##########
@@ -0,0 +1,60 @@
+###
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+###
+status = warn
+name = HudiConsoleLog
+
+# Set everything to be logged to the console
+appender.console.type = Console
+appender.console.name = CONSOLE
+appender.console.layout.type = PatternLayout
+appender.console.layout.pattern = %d{yy/MM/dd HH:mm:ss} %p %c{1}: %m%n
+
+# Root logger level
+rootLogger.level = warn
+# Root logger referring to console appender
+rootLogger.appenderRef.stdout.ref = CONSOLE
+
+# Set the default spark-shell log level to WARN. When running the spark-shell, the
+# log level for this class is used to overwrite the root logger's log level, so that
+# the user can have different defaults for the shell and regular Spark apps.
+logger.apache_spark_repl.name = org.apache.spark.repl.Main
+logger.apache_spark_repl.level = warn
+# Set logging of integration testsuite to INFO level
+logger.hudi_integ.name = org.apache.hudi.integ.testsuite
+logger.hudi_integ.level = info
+# Settings to quiet third party logs that are too verbose
+logger.apache_spark_jetty.name = org.spark_project.jetty
+logger.apache_spark_jetty.level = warn
+logger.apache_spark_jett_lifecycle.name = org.spark_project.jetty.util.component.AbstractLifeCycle

Review Comment:
   > Should we leave this one instance in the repo since it's for a docker demo?
   
   Sounds good to me.



-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1220607596

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10794",
       "triggerID" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10809",
       "triggerID" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10812",
       "triggerID" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * 53c4195ab7d36e4b369b368584ec1cca55d2c2e7 UNKNOWN
   * c272a3a25ecf1bf461de21f518f87d05d1d65f2a Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10812) 
   * 5963b2339ae8765df0ad9972a3babc560fc2c841 UNKNOWN
   * 4b92656adda5c86841ef978be0d87ecb43b0559f UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1221418372

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "1b5f4749d2a3146b825e3ca14a77535d51178c05",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1b5f4749d2a3146b825e3ca14a77535d51178c05",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1b5f4749d2a3146b825e3ca14a77535d51178c05 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: try adding in propery enabling bridge

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1192882953

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a0f4695ecec476ec988dab70f6aceb00ab0f69c5 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1217998066

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * b2d6b015aa283cba1949665771c8fb6caddb7b1f Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741) 
   * ab07f137f867a065b5ae3ab422fc3a498d1e888d Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1218003704

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * ab07f137f867a065b5ae3ab422fc3a498d1e888d Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] alexeykudinkin commented on a diff in pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
alexeykudinkin commented on code in PR #6170:
URL: https://github.com/apache/hudi/pull/6170#discussion_r942631573


##########
hudi-spark-datasource/hudi-spark/pom.xml:
##########
@@ -267,6 +252,14 @@
       <groupId>org.apache.logging.log4j</groupId>
       <artifactId>log4j-1.2-api</artifactId>
     </dependency>
+    <dependency>

Review Comment:
   As discussed on Slack: all terminal modules have to have it as compile deps (cli, integ-tests, etc), the library ones have to be provided (hudi-spark-bundle, hudi-flink-bundle, etc).
   
   Using tests is a good signal but we need to keep in mind that it's not gonna be covering everything.



-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] the-other-tim-brown commented on a diff in pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
the-other-tim-brown commented on code in PR #6170:
URL: https://github.com/apache/hudi/pull/6170#discussion_r947882426


##########
docker/demo/config/log4j2.properties:
##########
@@ -0,0 +1,60 @@
+###
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+###
+status = warn
+name = HudiConsoleLog
+
+# Set everything to be logged to the console
+appender.console.type = Console
+appender.console.name = CONSOLE
+appender.console.layout.type = PatternLayout
+appender.console.layout.pattern = %d{yy/MM/dd HH:mm:ss} %p %c{1}: %m%n
+
+# Root logger level
+rootLogger.level = warn
+# Root logger referring to console appender
+rootLogger.appenderRef.stdout.ref = CONSOLE
+
+# Set the default spark-shell log level to WARN. When running the spark-shell, the
+# log level for this class is used to overwrite the root logger's log level, so that
+# the user can have different defaults for the shell and regular Spark apps.
+logger.apache_spark_repl.name = org.apache.spark.repl.Main
+logger.apache_spark_repl.level = warn
+# Set logging of integration testsuite to INFO level
+logger.hudi_integ.name = org.apache.hudi.integ.testsuite
+logger.hudi_integ.level = info
+# Settings to quiet third party logs that are too verbose
+logger.apache_spark_jetty.name = org.spark_project.jetty
+logger.apache_spark_jetty.level = warn
+logger.apache_spark_jett_lifecycle.name = org.spark_project.jetty.util.component.AbstractLifeCycle

Review Comment:
   This is allows for fine grain control over the logging for the sake of the demo. Should we leave this one instance in the repo since it's for a docker demo?



-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: try adding in propery enabling bridge

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1193226001

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a0f4695ecec476ec988dab70f6aceb00ab0f69c5 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217) 
   * a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: try adding in propery enabling bridge

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1193226413

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a0f4695ecec476ec988dab70f6aceb00ab0f69c5 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217) 
   * a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1193392924

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276) 
   * 1a2d20c64958d09d8c9407e32cdb892ee4669d1b Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1194892799

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 111dd8be2ab5f681f1c79a36ea831a21dd28443b Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324) 
   * 943826e562500bd14abc5143d7f829337facea86 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1194987128

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 943826e562500bd14abc5143d7f829337facea86 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338) 
   * 95500ad9b22d2dde011cf8456f212c813375c594 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1194447222

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 6bb9f9ab93a77ac17a3cac40805ef284294948f9 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322) 
   * 111dd8be2ab5f681f1c79a36ea831a21dd28443b Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1220885371

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10794",
       "triggerID" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10809",
       "triggerID" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10812",
       "triggerID" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10828",
       "triggerID" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "90e2512b63a62434b9d5a427dc6758b653adead2",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10829",
       "triggerID" : "90e2512b63a62434b9d5a427dc6758b653adead2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "625d6c767679e9ac2bcd5727003217ca6cb7667f",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10831",
       "triggerID" : "625d6c767679e9ac2bcd5727003217ca6cb7667f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * 53c4195ab7d36e4b369b368584ec1cca55d2c2e7 UNKNOWN
   * 5963b2339ae8765df0ad9972a3babc560fc2c841 UNKNOWN
   * 90e2512b63a62434b9d5a427dc6758b653adead2 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10829) 
   * 625d6c767679e9ac2bcd5727003217ca6cb7667f Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10831) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1221008604

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10794",
       "triggerID" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10809",
       "triggerID" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10812",
       "triggerID" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10828",
       "triggerID" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "90e2512b63a62434b9d5a427dc6758b653adead2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10829",
       "triggerID" : "90e2512b63a62434b9d5a427dc6758b653adead2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "625d6c767679e9ac2bcd5727003217ca6cb7667f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10831",
       "triggerID" : "625d6c767679e9ac2bcd5727003217ca6cb7667f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ea168c835001e82b78d91e4f6c8850f43b339b29",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "ea168c835001e82b78d91e4f6c8850f43b339b29",
       "triggerType" : "PUSH"
     }, {
       "hash" : "555cc3c467c4056da9455088c21e22cfd7465168",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10836",
       "triggerID" : "555cc3c467c4056da9455088c21e22cfd7465168",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * 53c4195ab7d36e4b369b368584ec1cca55d2c2e7 UNKNOWN
   * 5963b2339ae8765df0ad9972a3babc560fc2c841 UNKNOWN
   * 625d6c767679e9ac2bcd5727003217ca6cb7667f Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10831) 
   * ea168c835001e82b78d91e4f6c8850f43b339b29 UNKNOWN
   * 555cc3c467c4056da9455088c21e22cfd7465168 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10836) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1219604319

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10794",
       "triggerID" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * 53c4195ab7d36e4b369b368584ec1cca55d2c2e7 UNKNOWN
   * 2b9408365f959cba49d9aae5fe0a0340eaed2cc2 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10794) 
   * fe71d7fd4e58b036e10d56c8b6f2baeeaf539214 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1195999352

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * 9439176a9aeb4945be37deb6d2d4decaa4d4efc5 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363) 
   * a32918090cf1fa4d518090cd146506685f8c18e7 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] xushiyan commented on a diff in pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
xushiyan commented on code in PR #6170:
URL: https://github.com/apache/hudi/pull/6170#discussion_r951854213


##########
hudi-spark-datasource/hudi-spark2/pom.xml:
##########
@@ -203,7 +203,19 @@
       <optional>true</optional>
     </dependency>
 
+    <!-- Extra Logging Bridges -->
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jul-to-slf4j</artifactId>

Review Comment:
   so this is only needed for spark2?



-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1223382898

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "520b1b54c37ce6378047a55f650e309d6feb89d1",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10885",
       "triggerID" : "520b1b54c37ce6378047a55f650e309d6feb89d1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "520b1b54c37ce6378047a55f650e309d6feb89d1",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10885",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 520b1b54c37ce6378047a55f650e309d6feb89d1 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10885) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1220755087

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10794",
       "triggerID" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10809",
       "triggerID" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10812",
       "triggerID" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10828",
       "triggerID" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "90e2512b63a62434b9d5a427dc6758b653adead2",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10829",
       "triggerID" : "90e2512b63a62434b9d5a427dc6758b653adead2",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * 53c4195ab7d36e4b369b368584ec1cca55d2c2e7 UNKNOWN
   * 5963b2339ae8765df0ad9972a3babc560fc2c841 UNKNOWN
   * 90e2512b63a62434b9d5a427dc6758b653adead2 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10829) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] the-other-tim-brown commented on a diff in pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
the-other-tim-brown commented on code in PR #6170:
URL: https://github.com/apache/hudi/pull/6170#discussion_r951867020


##########
hudi-spark-datasource/hudi-spark2/pom.xml:
##########
@@ -203,7 +203,19 @@
       <optional>true</optional>
     </dependency>
 
+    <!-- Extra Logging Bridges -->
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jul-to-slf4j</artifactId>

Review Comment:
   I think I can remove this now that we've added it to hudi-common. 



-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1218444100

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * 53c4195ab7d36e4b369b368584ec1cca55d2c2e7 UNKNOWN
   * a71b8d7629b59bd969c3a10e5c90dfd020cf084f Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1220893272

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10794",
       "triggerID" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10809",
       "triggerID" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10812",
       "triggerID" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10828",
       "triggerID" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "90e2512b63a62434b9d5a427dc6758b653adead2",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10829",
       "triggerID" : "90e2512b63a62434b9d5a427dc6758b653adead2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "625d6c767679e9ac2bcd5727003217ca6cb7667f",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10831",
       "triggerID" : "625d6c767679e9ac2bcd5727003217ca6cb7667f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ea168c835001e82b78d91e4f6c8850f43b339b29",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "ea168c835001e82b78d91e4f6c8850f43b339b29",
       "triggerType" : "PUSH"
     }, {
       "hash" : "555cc3c467c4056da9455088c21e22cfd7465168",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "555cc3c467c4056da9455088c21e22cfd7465168",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * 53c4195ab7d36e4b369b368584ec1cca55d2c2e7 UNKNOWN
   * 5963b2339ae8765df0ad9972a3babc560fc2c841 UNKNOWN
   * 90e2512b63a62434b9d5a427dc6758b653adead2 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10829) 
   * 625d6c767679e9ac2bcd5727003217ca6cb7667f Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10831) 
   * ea168c835001e82b78d91e4f6c8850f43b339b29 UNKNOWN
   * 555cc3c467c4056da9455088c21e22cfd7465168 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1218448062

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * 53c4195ab7d36e4b369b368584ec1cca55d2c2e7 UNKNOWN
   * a71b8d7629b59bd969c3a10e5c90dfd020cf084f Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] alexeykudinkin commented on a diff in pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
alexeykudinkin commented on code in PR #6170:
URL: https://github.com/apache/hudi/pull/6170#discussion_r950488643


##########
hudi-examples/hudi-examples-spark/pom.xml:
##########
@@ -230,6 +230,27 @@
                 </exclusion>
             </exclusions>
         </dependency>
+        <!-- Logging dependencies -->
+        <dependency>
+            <groupId>org.apache.logging.log4j</groupId>

Review Comment:
   This comment still holds -- let's clean up deps that are already in hudi-common and leave only `log4j-core` one



##########
hudi-cli/pom.xml:
##########
@@ -207,28 +207,21 @@
     <dependency>
       <groupId>org.apache.logging.log4j</groupId>
       <artifactId>log4j-core</artifactId>
+      <scope>runtime</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.logging.log4j</groupId>
       <artifactId>log4j-1.2-api</artifactId>
     </dependency>
-
-    <dependency>
-      <groupId>org.apache.logging.log4j</groupId>
-      <artifactId>log4j-core</artifactId>
-      <scope>test</scope>
-    </dependency>
-
     <dependency>
-      <groupId>org.apache.logging.log4j</groupId>
-      <artifactId>log4j-api</artifactId>
-      <scope>test</scope>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jul-to-slf4j</artifactId>
+      <scope>runtime</scope>

Review Comment:
   Same here



##########
hudi-gcp/pom.xml:
##########
@@ -66,10 +66,6 @@ See https://github.com/GoogleCloudPlatform/cloud-opensource-java/wiki/The-Google
      <groupId>org.apache.logging.log4j</groupId>
      <artifactId>log4j-api</artifactId>
     </dependency>
-    <dependency>
-      <groupId>org.apache.logging.log4j</groupId>
-      <artifactId>log4j-core</artifactId>
-    </dependency>
     <dependency>
       <groupId>org.apache.logging.log4j</groupId>
       <artifactId>log4j-1.2-api</artifactId>

Review Comment:
   Same here -- we don't need these ones anymore. Let's scan whole project and clean them up



##########
hudi-cli/pom.xml:
##########
@@ -207,28 +207,20 @@
     <dependency>
       <groupId>org.apache.logging.log4j</groupId>
       <artifactId>log4j-core</artifactId>
+      <scope>compile</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.logging.log4j</groupId>
       <artifactId>log4j-1.2-api</artifactId>
     </dependency>
-
-    <dependency>
-      <groupId>org.apache.logging.log4j</groupId>
-      <artifactId>log4j-core</artifactId>
-      <scope>test</scope>
-    </dependency>
-
     <dependency>
-      <groupId>org.apache.logging.log4j</groupId>
-      <artifactId>log4j-api</artifactId>
-      <scope>test</scope>
+      <groupId>org.slf4j</groupId>

Review Comment:
   We should add all bridges (log4j1, slf4j, jul) to `hoodie-common` and remove them from elsewhere to make sure all modules do have them



##########
hudi-cli/pom.xml:
##########
@@ -207,28 +207,21 @@
     <dependency>
       <groupId>org.apache.logging.log4j</groupId>
       <artifactId>log4j-core</artifactId>
+      <scope>runtime</scope>

Review Comment:
   This should be compile, shouldn't it?



-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1193570330

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 34485e3a7df2712077f5987f930b7a6fa33a3986 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1194365379

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 16ff6fba9e82e35bfb202902f22e6c59ade998ff Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298) 
   * 6bb9f9ab93a77ac17a3cac40805ef284294948f9 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1194889385

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 111dd8be2ab5f681f1c79a36ea831a21dd28443b Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324) 
   * 943826e562500bd14abc5143d7f829337facea86 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1196051799

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * a32918090cf1fa4d518090cd146506685f8c18e7 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] the-other-tim-brown commented on a diff in pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
the-other-tim-brown commented on code in PR #6170:
URL: https://github.com/apache/hudi/pull/6170#discussion_r940858499


##########
docker/demo/config/log4j2.properties:
##########
@@ -0,0 +1,60 @@
+###
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+###
+status = warn
+name = HudiConsoleLog
+
+# Set everything to be logged to the console
+appender.console.type = Console
+appender.console.name = CONSOLE
+appender.console.layout.type = PatternLayout
+appender.console.layout.pattern = %d{yy/MM/dd HH:mm:ss} %p %c{1}: %m%n
+
+# Root logger level
+rootLogger.level = warn
+# Root logger referring to console appender
+rootLogger.appenderRef.stdout.ref = CONSOLE
+
+# Set the default spark-shell log level to WARN. When running the spark-shell, the
+# log level for this class is used to overwrite the root logger's log level, so that
+# the user can have different defaults for the shell and regular Spark apps.
+logger.apache_spark_repl.name = org.apache.spark.repl.Main
+logger.apache_spark_repl.level = warn
+# Set logging of integration testsuite to INFO level
+logger.hudi_integ.name = org.apache.hudi.integ.testsuite
+logger.hudi_integ.level = info
+# Settings to quiet third party logs that are too verbose
+logger.apache_spark_jetty.name = org.spark_project.jetty
+logger.apache_spark_jetty.level = warn
+logger.apache_spark_jett_lifecycle.name = org.spark_project.jetty.util.component.AbstractLifeCycle

Review Comment:
   Personally, I'm not a fan of using the `.properties` format. The yaml format is my preference and even the xml seems a bit more natural than the syntax here.



-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1212585612

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * 644e76302818a3a4845188f23bd9bf4e404eba5e Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740) 
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] alexeykudinkin commented on a diff in pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
alexeykudinkin commented on code in PR #6170:
URL: https://github.com/apache/hudi/pull/6170#discussion_r944602618


##########
hudi-client/hudi-client-common/src/main/resources/log4j2.properties:
##########
@@ -15,9 +15,16 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 ###
-log4j.rootLogger=INFO, A1
-# A1 is set to be a ConsoleAppender.
-log4j.appender.A1=org.apache.log4j.ConsoleAppender
-# A1 uses PatternLayout.
-log4j.appender.A1.layout=org.apache.log4j.PatternLayout
-log4j.appender.A1.layout.ConversionPattern=%-4r [%t] %-5p %c %x - %m%n
+status = warn
+name = HudiConsoleLog

Review Comment:
   I don't have that context either unfortunately. Let's sync up on Slack regarding the next steps.



-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: try adding in propery enabling bridge

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1193234827

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1193402281

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1a2d20c64958d09d8c9407e32cdb892ee4669d1b Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285) 
   * dbac26f88b14a8df88eba2ca70d566f2db53e412 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: try adding in propery enabling bridge

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1192121731

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 86690888d4002b8fe3aa8ef07b8f4347cc615304 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] the-other-tim-brown commented on a diff in pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
the-other-tim-brown commented on code in PR #6170:
URL: https://github.com/apache/hudi/pull/6170#discussion_r940860174


##########
docker/demo/config/log4j2.properties:
##########
@@ -0,0 +1,60 @@
+###
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+###
+status = warn
+name = HudiConsoleLog
+
+# Set everything to be logged to the console
+appender.console.type = Console
+appender.console.name = CONSOLE
+appender.console.layout.type = PatternLayout
+appender.console.layout.pattern = %d{yy/MM/dd HH:mm:ss} %p %c{1}: %m%n
+
+# Root logger level
+rootLogger.level = warn
+# Root logger referring to console appender
+rootLogger.appenderRef.stdout.ref = CONSOLE

Review Comment:
   I think it will fallback to stdout



-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] the-other-tim-brown commented on a diff in pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
the-other-tim-brown commented on code in PR #6170:
URL: https://github.com/apache/hudi/pull/6170#discussion_r940863124


##########
hudi-client/hudi-client-common/pom.xml:
##########
@@ -193,6 +193,12 @@
     </dependency>
 
     <!-- Test -->
+    <dependency>
+      <groupId>org.apache.hudi</groupId>
+      <artifactId>hudi-tests-common</artifactId>
+      <version>${project.version}</version>
+      <scope>test</scope>
+    </dependency>
     <dependency>
       <groupId>org.junit.jupiter</groupId>

Review Comment:
   Do you know why junit-vintage-engine is being used by any chance? Do we still need to support running junit4 tests in some modules?
   
   I can add in the junit-jupiter-api, junit-jupiter-engine to the common test module



-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: try adding in propery enabling bridge

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1192876447

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 7f37493dd7f8d24039131cd4e4b49c7a1da7c28f Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213) 
   * a0f4695ecec476ec988dab70f6aceb00ab0f69c5 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: try adding in propery enabling bridge

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1192257076

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * c7f439785df509ece3725b7b5f71a12f485cc726 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1195931142

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * 69f96eafbf0092d70b48be559520bab2d28aa214 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360) 
   * 9439176a9aeb4945be37deb6d2d4decaa4d4efc5 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1195027645

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 95500ad9b22d2dde011cf8456f212c813375c594 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344) 
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e3a54b8c03ab0b05c9f23a59003dabc151dbd25c Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1194371001

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 16ff6fba9e82e35bfb202902f22e6c59ade998ff Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298) 
   * 6bb9f9ab93a77ac17a3cac40805ef284294948f9 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1195066798

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e3a54b8c03ab0b05c9f23a59003dabc151dbd25c Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1220679750

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10794",
       "triggerID" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10809",
       "triggerID" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10812",
       "triggerID" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10828",
       "triggerID" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "90e2512b63a62434b9d5a427dc6758b653adead2",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "90e2512b63a62434b9d5a427dc6758b653adead2",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * 53c4195ab7d36e4b369b368584ec1cca55d2c2e7 UNKNOWN
   * c272a3a25ecf1bf461de21f518f87d05d1d65f2a Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10812) 
   * 5963b2339ae8765df0ad9972a3babc560fc2c841 UNKNOWN
   * 4b92656adda5c86841ef978be0d87ecb43b0559f Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10828) 
   * 90e2512b63a62434b9d5a427dc6758b653adead2 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1220685392

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10794",
       "triggerID" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10809",
       "triggerID" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10812",
       "triggerID" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10828",
       "triggerID" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "90e2512b63a62434b9d5a427dc6758b653adead2",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "90e2512b63a62434b9d5a427dc6758b653adead2",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * 53c4195ab7d36e4b369b368584ec1cca55d2c2e7 UNKNOWN
   * 5963b2339ae8765df0ad9972a3babc560fc2c841 UNKNOWN
   * 4b92656adda5c86841ef978be0d87ecb43b0559f Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10828) 
   * 90e2512b63a62434b9d5a427dc6758b653adead2 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1220881406

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10794",
       "triggerID" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10809",
       "triggerID" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10812",
       "triggerID" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10828",
       "triggerID" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "90e2512b63a62434b9d5a427dc6758b653adead2",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10829",
       "triggerID" : "90e2512b63a62434b9d5a427dc6758b653adead2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "625d6c767679e9ac2bcd5727003217ca6cb7667f",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "625d6c767679e9ac2bcd5727003217ca6cb7667f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * 53c4195ab7d36e4b369b368584ec1cca55d2c2e7 UNKNOWN
   * 5963b2339ae8765df0ad9972a3babc560fc2c841 UNKNOWN
   * 90e2512b63a62434b9d5a427dc6758b653adead2 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10829) 
   * 625d6c767679e9ac2bcd5727003217ca6cb7667f UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1221064789

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10794",
       "triggerID" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10809",
       "triggerID" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10812",
       "triggerID" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10828",
       "triggerID" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "90e2512b63a62434b9d5a427dc6758b653adead2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10829",
       "triggerID" : "90e2512b63a62434b9d5a427dc6758b653adead2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "625d6c767679e9ac2bcd5727003217ca6cb7667f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10831",
       "triggerID" : "625d6c767679e9ac2bcd5727003217ca6cb7667f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ea168c835001e82b78d91e4f6c8850f43b339b29",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "ea168c835001e82b78d91e4f6c8850f43b339b29",
       "triggerType" : "PUSH"
     }, {
       "hash" : "555cc3c467c4056da9455088c21e22cfd7465168",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10836",
       "triggerID" : "555cc3c467c4056da9455088c21e22cfd7465168",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7330577b3d9223c6ccd9fa7573e00c6a7436658c",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "7330577b3d9223c6ccd9fa7573e00c6a7436658c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1b5f4749d2a3146b825e3ca14a77535d51178c05",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10842",
       "triggerID" : "1b5f4749d2a3146b825e3ca14a77535d51178c05",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * 53c4195ab7d36e4b369b368584ec1cca55d2c2e7 UNKNOWN
   * 5963b2339ae8765df0ad9972a3babc560fc2c841 UNKNOWN
   * 625d6c767679e9ac2bcd5727003217ca6cb7667f Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10831) 
   * ea168c835001e82b78d91e4f6c8850f43b339b29 UNKNOWN
   * 555cc3c467c4056da9455088c21e22cfd7465168 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10836) 
   * 7330577b3d9223c6ccd9fa7573e00c6a7436658c UNKNOWN
   * 1b5f4749d2a3146b825e3ca14a77535d51178c05 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10842) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1212587851

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * 644e76302818a3a4845188f23bd9bf4e404eba5e Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740) 
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * b2d6b015aa283cba1949665771c8fb6caddb7b1f UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1212581107

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * a32918090cf1fa4d518090cd146506685f8c18e7 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367) 
   * 644e76302818a3a4845188f23bd9bf4e404eba5e UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1218086389

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * ab07f137f867a065b5ae3ab422fc3a498d1e888d Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792) 
   * 53c4195ab7d36e4b369b368584ec1cca55d2c2e7 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] the-other-tim-brown commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
the-other-tim-brown commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1218430020

   @hudi-bot run azure


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] alexeykudinkin commented on a diff in pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
alexeykudinkin commented on code in PR #6170:
URL: https://github.com/apache/hudi/pull/6170#discussion_r944600167


##########
hudi-cli/pom.xml:
##########
@@ -212,23 +212,14 @@
       <groupId>org.apache.logging.log4j</groupId>
       <artifactId>log4j-1.2-api</artifactId>
     </dependency>
-
-    <dependency>
-      <groupId>org.apache.logging.log4j</groupId>
-      <artifactId>log4j-core</artifactId>
-      <scope>test</scope>
-    </dependency>
-
     <dependency>
-      <groupId>org.apache.logging.log4j</groupId>
-      <artifactId>log4j-api</artifactId>
-      <scope>test</scope>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jul-to-slf4j</artifactId>
     </dependency>
 
     <dependency>
       <groupId>org.apache.logging.log4j</groupId>
       <artifactId>log4j-slf4j-impl</artifactId>
-      <scope>test</scope>

Review Comment:
   It's used as standalone



-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] the-other-tim-brown commented on a diff in pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
the-other-tim-brown commented on code in PR #6170:
URL: https://github.com/apache/hudi/pull/6170#discussion_r943995381


##########
.github/workflows/bot.yml:
##########
@@ -9,6 +9,8 @@ on:
     branches:
       - master
       - 'release-*'
+env:
+  MVN_ARGS: -ntp -B -V -Pwarn-log -Dorg.slf4j.simpleLogger.log.org.apache.maven.plugins.shade=warn -Dorg.slf4j.simpleLogger.log.org.apache.maven.plugins.dependency=warn

Review Comment:
   We can specify a logging configuration for maven itself if we want and configure the simple logger there. Some plugins allow you to set the log level in their configuration but these plugins do not have that option



-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] xushiyan commented on a diff in pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
xushiyan commented on code in PR #6170:
URL: https://github.com/apache/hudi/pull/6170#discussion_r951854213


##########
hudi-spark-datasource/hudi-spark2/pom.xml:
##########
@@ -203,7 +203,19 @@
       <optional>true</optional>
     </dependency>
 
+    <!-- Extra Logging Bridges -->
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jul-to-slf4j</artifactId>

Review Comment:
   so this is only needed for spark2 as an extra?



-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: try adding in propery enabling bridge

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1192217842

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 86690888d4002b8fe3aa8ef07b8f4347cc615304 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173) 
   * c7f439785df509ece3725b7b5f71a12f485cc726 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1193392307

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276) 
   * 1a2d20c64958d09d8c9407e32cdb892ee4669d1b UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1193411468

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * dbac26f88b14a8df88eba2ca70d566f2db53e412 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: try adding in propery enabling bridge

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1192056138

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 956a4b05a1a7461d5278e94869cde0fd619b29c2 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160) 
   * 2a317eb12e77099f064d2bda72dc1b7d3e3306b2 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169) 
   * 86690888d4002b8fe3aa8ef07b8f4347cc615304 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] alexeykudinkin commented on a diff in pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
alexeykudinkin commented on code in PR #6170:
URL: https://github.com/apache/hudi/pull/6170#discussion_r942643055


##########
.github/workflows/bot.yml:
##########
@@ -9,6 +9,8 @@ on:
     branches:
       - master
       - 'release-*'
+env:
+  MVN_ARGS: -ntp -B -V -Pwarn-log -Dorg.slf4j.simpleLogger.log.org.apache.maven.plugins.shade=warn -Dorg.slf4j.simpleLogger.log.org.apache.maven.plugins.dependency=warn

Review Comment:
   Interesting. You're saying if you specify the logs it in props for these loggers it's not not picked up?



-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1212618760

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * b2d6b015aa283cba1949665771c8fb6caddb7b1f Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1220743282

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10794",
       "triggerID" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10809",
       "triggerID" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10812",
       "triggerID" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10828",
       "triggerID" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "90e2512b63a62434b9d5a427dc6758b653adead2",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10829",
       "triggerID" : "90e2512b63a62434b9d5a427dc6758b653adead2",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * 53c4195ab7d36e4b369b368584ec1cca55d2c2e7 UNKNOWN
   * 5963b2339ae8765df0ad9972a3babc560fc2c841 UNKNOWN
   * 4b92656adda5c86841ef978be0d87ecb43b0559f Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10828) 
   * 90e2512b63a62434b9d5a427dc6758b653adead2 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10829) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1221423449

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "1b5f4749d2a3146b825e3ca14a77535d51178c05",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10842",
       "triggerID" : "1b5f4749d2a3146b825e3ca14a77535d51178c05",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1b5f4749d2a3146b825e3ca14a77535d51178c05",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 1b5f4749d2a3146b825e3ca14a77535d51178c05 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10842) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] the-other-tim-brown commented on a diff in pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
the-other-tim-brown commented on code in PR #6170:
URL: https://github.com/apache/hudi/pull/6170#discussion_r950179930


##########
.github/workflows/bot.yml:
##########
@@ -9,6 +9,8 @@ on:
     branches:
       - master
       - 'release-*'
+env:
+  MVN_ARGS: -ntp -B -V -Pwarn-log -Dorg.slf4j.simpleLogger.log.org.apache.maven.plugins.shade=warn -Dorg.slf4j.simpleLogger.log.org.apache.maven.plugins.dependency=warn

Review Comment:
   I've tried debugging this for a couple of hours but it looks like maven will not pick up our properties file so I am going to revert back to manually specifying the strings in the build file 



-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1221023502

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10794",
       "triggerID" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10809",
       "triggerID" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10812",
       "triggerID" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10828",
       "triggerID" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "90e2512b63a62434b9d5a427dc6758b653adead2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10829",
       "triggerID" : "90e2512b63a62434b9d5a427dc6758b653adead2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "625d6c767679e9ac2bcd5727003217ca6cb7667f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10831",
       "triggerID" : "625d6c767679e9ac2bcd5727003217ca6cb7667f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ea168c835001e82b78d91e4f6c8850f43b339b29",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "ea168c835001e82b78d91e4f6c8850f43b339b29",
       "triggerType" : "PUSH"
     }, {
       "hash" : "555cc3c467c4056da9455088c21e22cfd7465168",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10836",
       "triggerID" : "555cc3c467c4056da9455088c21e22cfd7465168",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7330577b3d9223c6ccd9fa7573e00c6a7436658c",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "7330577b3d9223c6ccd9fa7573e00c6a7436658c",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * 53c4195ab7d36e4b369b368584ec1cca55d2c2e7 UNKNOWN
   * 5963b2339ae8765df0ad9972a3babc560fc2c841 UNKNOWN
   * 625d6c767679e9ac2bcd5727003217ca6cb7667f Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10831) 
   * ea168c835001e82b78d91e4f6c8850f43b339b29 UNKNOWN
   * 555cc3c467c4056da9455088c21e22cfd7465168 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10836) 
   * 7330577b3d9223c6ccd9fa7573e00c6a7436658c UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1222932381

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "1b5f4749d2a3146b825e3ca14a77535d51178c05",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10842",
       "triggerID" : "1b5f4749d2a3146b825e3ca14a77535d51178c05",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1b5f4749d2a3146b825e3ca14a77535d51178c05",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10842",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "520b1b54c37ce6378047a55f650e309d6feb89d1",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "520b1b54c37ce6378047a55f650e309d6feb89d1",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1b5f4749d2a3146b825e3ca14a77535d51178c05 Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10842) 
   * 520b1b54c37ce6378047a55f650e309d6feb89d1 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1219676433

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10794",
       "triggerID" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10809",
       "triggerID" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * 53c4195ab7d36e4b369b368584ec1cca55d2c2e7 UNKNOWN
   * 2b9408365f959cba49d9aae5fe0a0340eaed2cc2 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10794) 
   * fe71d7fd4e58b036e10d56c8b6f2baeeaf539214 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10809) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1217992427

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * b2d6b015aa283cba1949665771c8fb6caddb7b1f Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741) 
   * ab07f137f867a065b5ae3ab422fc3a498d1e888d UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1218189301

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * 53c4195ab7d36e4b369b368584ec1cca55d2c2e7 UNKNOWN
   * a71b8d7629b59bd969c3a10e5c90dfd020cf084f Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1219941341

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10794",
       "triggerID" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10809",
       "triggerID" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10812",
       "triggerID" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * 53c4195ab7d36e4b369b368584ec1cca55d2c2e7 UNKNOWN
   * c272a3a25ecf1bf461de21f518f87d05d1d65f2a Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10812) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] the-other-tim-brown commented on a diff in pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
the-other-tim-brown commented on code in PR #6170:
URL: https://github.com/apache/hudi/pull/6170#discussion_r940865956


##########
hudi-spark-datasource/hudi-spark/pom.xml:
##########
@@ -267,6 +252,14 @@
       <groupId>org.apache.logging.log4j</groupId>
       <artifactId>log4j-1.2-api</artifactId>
     </dependency>
+    <dependency>

Review Comment:
   Is there a way to know which dependencies will be provided by the runtime env for each environment? My strategy right now has just been to include as compile if the tests were failing at run time due to logging.



-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: try adding in propery enabling bridge

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1192026349

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 956a4b05a1a7461d5278e94869cde0fd619b29c2 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160) 
   * 2a317eb12e77099f064d2bda72dc1b7d3e3306b2 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: try adding in propery enabling bridge

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1191881453

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 956a4b05a1a7461d5278e94869cde0fd619b29c2 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: try adding in propery enabling bridge

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1192220568

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 86690888d4002b8fe3aa8ef07b8f4347cc615304 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173) 
   * c7f439785df509ece3725b7b5f71a12f485cc726 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1195867703

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * 69f96eafbf0092d70b48be559520bab2d28aa214 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1193540808

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * dbac26f88b14a8df88eba2ca70d566f2db53e412 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286) 
   * 34485e3a7df2712077f5987f930b7a6fa33a3986 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1193402953

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1a2d20c64958d09d8c9407e32cdb892ee4669d1b Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285) 
   * dbac26f88b14a8df88eba2ca70d566f2db53e412 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] alexeykudinkin commented on a diff in pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
alexeykudinkin commented on code in PR #6170:
URL: https://github.com/apache/hudi/pull/6170#discussion_r940795817


##########
hudi-client/hudi-client-common/pom.xml:
##########
@@ -193,6 +193,12 @@
     </dependency>
 
     <!-- Test -->
+    <dependency>
+      <groupId>org.apache.hudi</groupId>
+      <artifactId>hudi-tests-common</artifactId>
+      <version>${project.version}</version>
+      <scope>test</scope>
+    </dependency>
     <dependency>
       <groupId>org.junit.jupiter</groupId>

Review Comment:
   We should extract these deps as well to "hudi-tests-common". while we're at it



##########
hudi-cli/pom.xml:
##########
@@ -212,23 +212,14 @@
       <groupId>org.apache.logging.log4j</groupId>
       <artifactId>log4j-1.2-api</artifactId>
     </dependency>
-
-    <dependency>
-      <groupId>org.apache.logging.log4j</groupId>
-      <artifactId>log4j-core</artifactId>
-      <scope>test</scope>
-    </dependency>
-
     <dependency>
-      <groupId>org.apache.logging.log4j</groupId>
-      <artifactId>log4j-api</artifactId>
-      <scope>test</scope>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jul-to-slf4j</artifactId>
     </dependency>
 
     <dependency>
       <groupId>org.apache.logging.log4j</groupId>
       <artifactId>log4j-slf4j-impl</artifactId>
-      <scope>test</scope>

Review Comment:
   We should not package any logging dependencies (should be provided along w/ query engine)



##########
.github/workflows/bot.yml:
##########
@@ -9,6 +9,8 @@ on:
     branches:
       - master
       - 'release-*'
+env:
+  MVN_ARGS: -ntp -B -V -Pwarn-log -Dorg.slf4j.simpleLogger.log.org.apache.maven.plugins.shade=warn -Dorg.slf4j.simpleLogger.log.org.apache.maven.plugins.dependency=warn

Review Comment:
   Can we add these overrides to the config instead of needing to specify them here?



##########
hudi-examples/hudi-examples-spark/pom.xml:
##########
@@ -230,6 +230,27 @@
                 </exclusion>
             </exclusions>
         </dependency>
+        <!-- Logging dependencies -->
+        <dependency>
+            <groupId>org.apache.logging.log4j</groupId>

Review Comment:
   Why do we need these here? 
   These should be coming from Spark



##########
hudi-integ-test/pom.xml:
##########
@@ -525,24 +519,9 @@
         </executions>
       </plugin>
       <plugin>
-      <groupId>org.scalatest</groupId>

Review Comment:
   Why deleting this config?



##########
hudi-spark-datasource/hudi-spark/pom.xml:
##########
@@ -267,6 +252,14 @@
       <groupId>org.apache.logging.log4j</groupId>
       <artifactId>log4j-1.2-api</artifactId>
     </dependency>
+    <dependency>

Review Comment:
   We should
   
   1. Designate all these deps as "provided" in the top-level pom
   2. Add them to "hudi-common" (therefore avoiding need to replicate them across the board)
   3. Override them as compile dependency in a few places (where they are not brought in by the query-engine) 



##########
docker/demo/config/log4j2.properties:
##########
@@ -0,0 +1,60 @@
+###
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+###
+status = warn
+name = HudiConsoleLog
+
+# Set everything to be logged to the console
+appender.console.type = Console
+appender.console.name = CONSOLE
+appender.console.layout.type = PatternLayout
+appender.console.layout.pattern = %d{yy/MM/dd HH:mm:ss} %p %c{1}: %m%n
+
+# Root logger level
+rootLogger.level = warn
+# Root logger referring to console appender
+rootLogger.appenderRef.stdout.ref = CONSOLE

Review Comment:
   Do we need to specify stderr or would it fallback to stdout when not set?



##########
hudi-client/hudi-java-client/src/main/resources/log4j2.properties:
##########
@@ -15,9 +15,16 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 ###
-log4j.rootLogger=INFO, A1
-# A1 is set to be a ConsoleAppender.
-log4j.appender.A1=org.apache.log4j.ConsoleAppender
-# A1 uses PatternLayout.
-log4j.appender.A1.layout=org.apache.log4j.PatternLayout
-log4j.appender.A1.layout.ConversionPattern=%-4r [%t] %-5p %c %x - %m%n
+status = warn
+name = HudiConsoleLog

Review Comment:
   And here



##########
hudi-client/hudi-flink-client/src/main/resources/log4j2.properties:
##########
@@ -15,11 +15,16 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 ###
-log4j.rootLogger=WARN, A1
-log4j.category.org.apache=INFO
-log4j.category.org.apache.parquet.hadoop=WARN
-# A1 is set to be a ConsoleAppender.
-log4j.appender.A1=org.apache.log4j.ConsoleAppender
-# A1 uses PatternLayout.
-log4j.appender.A1.layout=org.apache.log4j.PatternLayout
-log4j.appender.A1.layout.ConversionPattern=%-4r [%t] %-5p %c %x - %m%n
+status = warn
+name = HudiConsoleLog

Review Comment:
   Same comment as above for Spark client



##########
docker/demo/config/log4j2.properties:
##########
@@ -0,0 +1,60 @@
+###
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+###
+status = warn
+name = HudiConsoleLog
+
+# Set everything to be logged to the console
+appender.console.type = Console
+appender.console.name = CONSOLE
+appender.console.layout.type = PatternLayout
+appender.console.layout.pattern = %d{yy/MM/dd HH:mm:ss} %p %c{1}: %m%n
+
+# Root logger level
+rootLogger.level = warn
+# Root logger referring to console appender
+rootLogger.appenderRef.stdout.ref = CONSOLE
+
+# Set the default spark-shell log level to WARN. When running the spark-shell, the
+# log level for this class is used to overwrite the root logger's log level, so that
+# the user can have different defaults for the shell and regular Spark apps.
+logger.apache_spark_repl.name = org.apache.spark.repl.Main
+logger.apache_spark_repl.level = warn
+# Set logging of integration testsuite to INFO level
+logger.hudi_integ.name = org.apache.hudi.integ.testsuite
+logger.hudi_integ.level = info
+# Settings to quiet third party logs that are too verbose
+logger.apache_spark_jetty.name = org.spark_project.jetty
+logger.apache_spark_jetty.level = warn
+logger.apache_spark_jett_lifecycle.name = org.spark_project.jetty.util.component.AbstractLifeCycle

Review Comment:
   I find it really odd that we need to now come up with the name for this loggers, instead of just identifying them by the package-name



##########
hudi-client/hudi-client-common/src/main/resources/log4j2.properties:
##########
@@ -15,9 +15,16 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 ###
-log4j.rootLogger=INFO, A1
-# A1 is set to be a ConsoleAppender.
-log4j.appender.A1=org.apache.log4j.ConsoleAppender
-# A1 uses PatternLayout.
-log4j.appender.A1.layout=org.apache.log4j.PatternLayout
-log4j.appender.A1.layout.ConversionPattern=%-4r [%t] %-5p %c %x - %m%n
+status = warn
+name = HudiConsoleLog

Review Comment:
   We need to clarify why we have this config in production (not test) resources.
   
   If we're previously trying to influence configuration of users of the Spark client, then we can't upgrade this one to log4j2 since there are still clients using older Spark versions using log4j1



-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] alexeykudinkin commented on a diff in pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
alexeykudinkin commented on code in PR #6170:
URL: https://github.com/apache/hudi/pull/6170#discussion_r942635319


##########
hudi-client/hudi-client-common/pom.xml:
##########
@@ -193,6 +193,12 @@
     </dependency>
 
     <!-- Test -->
+    <dependency>
+      <groupId>org.apache.hudi</groupId>
+      <artifactId>hudi-tests-common</artifactId>
+      <version>${project.version}</version>
+      <scope>test</scope>
+    </dependency>
     <dependency>
       <groupId>org.junit.jupiter</groupId>

Review Comment:
   Good question. We can try to remove it and see what happens.



-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] the-other-tim-brown commented on a diff in pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
the-other-tim-brown commented on code in PR #6170:
URL: https://github.com/apache/hudi/pull/6170#discussion_r951866162


##########
hudi-tests-common/pom.xml:
##########
@@ -0,0 +1,71 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+       http://www.apache.org/licenses/LICENSE-2.0
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <parent>
+        <artifactId>hudi</artifactId>
+        <groupId>org.apache.hudi</groupId>
+        <version>0.13.0-SNAPSHOT</version>
+    </parent>
+
+    <modelVersion>4.0.0</modelVersion>
+    <artifactId>hudi-tests-common</artifactId>
+
+    <properties>
+        <main.basedir>${project.parent.basedir}</main.basedir>
+    </properties>
+
+    <build>
+        <resources>
+            <resource>
+                <!-- Share logging configs and other resources for testing across all modules -->
+                <directory>src/main/resources</directory>
+            </resource>
+        </resources>
+
+        <plugins>
+
+            <plugin>
+                <groupId>org.apache.rat</groupId>
+                <artifactId>apache-rat-plugin</artifactId>
+            </plugin>
+        </plugins>
+    </build>
+
+    <dependencies>
+        <!-- All modules will need to include log4j-core during test runtime to properly log -->
+        <dependency>
+            <groupId>org.apache.logging.log4j</groupId>
+            <artifactId>log4j-core</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <!-- Add some logging bridges that are needed at runtime for tests -->
+        <dependency>
+            <groupId>org.apache.logging.log4j</groupId>
+            <artifactId>log4j-slf4j-impl</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>jul-to-slf4j</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <!-- Required for groups/excludeGroups support in the maven surefire plugin -->
+        <dependency>
+            <groupId>org.junit.jupiter</groupId>

Review Comment:
   I think we should follow up with that in another pass



-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1223375610

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "520b1b54c37ce6378047a55f650e309d6feb89d1",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "520b1b54c37ce6378047a55f650e309d6feb89d1",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 520b1b54c37ce6378047a55f650e309d6feb89d1 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1220666132

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10794",
       "triggerID" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10809",
       "triggerID" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10812",
       "triggerID" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10828",
       "triggerID" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * 53c4195ab7d36e4b369b368584ec1cca55d2c2e7 UNKNOWN
   * c272a3a25ecf1bf461de21f518f87d05d1d65f2a Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10812) 
   * 5963b2339ae8765df0ad9972a3babc560fc2c841 UNKNOWN
   * 4b92656adda5c86841ef978be0d87ecb43b0559f Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10828) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1218514404

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10794",
       "triggerID" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * 53c4195ab7d36e4b369b368584ec1cca55d2c2e7 UNKNOWN
   * 2b9408365f959cba49d9aae5fe0a0340eaed2cc2 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10794) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1218504183

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10794",
       "triggerID" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * 53c4195ab7d36e4b369b368584ec1cca55d2c2e7 UNKNOWN
   * a71b8d7629b59bd969c3a10e5c90dfd020cf084f Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793) 
   * 2b9408365f959cba49d9aae5fe0a0340eaed2cc2 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10794) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1219687422

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10794",
       "triggerID" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10809",
       "triggerID" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * 53c4195ab7d36e4b369b368584ec1cca55d2c2e7 UNKNOWN
   * fe71d7fd4e58b036e10d56c8b6f2baeeaf539214 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10809) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1219754956

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10794",
       "triggerID" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10809",
       "triggerID" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * 53c4195ab7d36e4b369b368584ec1cca55d2c2e7 UNKNOWN
   * fe71d7fd4e58b036e10d56c8b6f2baeeaf539214 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10809) 
   * c272a3a25ecf1bf461de21f518f87d05d1d65f2a UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1221103651

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10794",
       "triggerID" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10809",
       "triggerID" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10812",
       "triggerID" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10828",
       "triggerID" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "90e2512b63a62434b9d5a427dc6758b653adead2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10829",
       "triggerID" : "90e2512b63a62434b9d5a427dc6758b653adead2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "625d6c767679e9ac2bcd5727003217ca6cb7667f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10831",
       "triggerID" : "625d6c767679e9ac2bcd5727003217ca6cb7667f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ea168c835001e82b78d91e4f6c8850f43b339b29",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "ea168c835001e82b78d91e4f6c8850f43b339b29",
       "triggerType" : "PUSH"
     }, {
       "hash" : "555cc3c467c4056da9455088c21e22cfd7465168",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10836",
       "triggerID" : "555cc3c467c4056da9455088c21e22cfd7465168",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7330577b3d9223c6ccd9fa7573e00c6a7436658c",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "7330577b3d9223c6ccd9fa7573e00c6a7436658c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1b5f4749d2a3146b825e3ca14a77535d51178c05",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10842",
       "triggerID" : "1b5f4749d2a3146b825e3ca14a77535d51178c05",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * 53c4195ab7d36e4b369b368584ec1cca55d2c2e7 UNKNOWN
   * 5963b2339ae8765df0ad9972a3babc560fc2c841 UNKNOWN
   * ea168c835001e82b78d91e4f6c8850f43b339b29 UNKNOWN
   * 555cc3c467c4056da9455088c21e22cfd7465168 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10836) 
   * 7330577b3d9223c6ccd9fa7573e00c6a7436658c UNKNOWN
   * 1b5f4749d2a3146b825e3ca14a77535d51178c05 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10842) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [hudi] hudi-bot commented on pull request #6170: [HUDI-4441] Log4j2 configuration fixes and removal of log4j1 dependencies

Posted by GitBox <gi...@apache.org>.
hudi-bot commented on PR #6170:
URL: https://github.com/apache/hudi/pull/6170#issuecomment-1221193262

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10160",
       "triggerID" : "956a4b05a1a7461d5278e94869cde0fd619b29c2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10169",
       "triggerID" : "2a317eb12e77099f064d2bda72dc1b7d3e3306b2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10173",
       "triggerID" : "86690888d4002b8fe3aa8ef07b8f4347cc615304",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10189",
       "triggerID" : "c7f439785df509ece3725b7b5f71a12f485cc726",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10213",
       "triggerID" : "7f37493dd7f8d24039131cd4e4b49c7a1da7c28f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10217",
       "triggerID" : "a0f4695ecec476ec988dab70f6aceb00ab0f69c5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10276",
       "triggerID" : "a3cc6e44d568b0f69b1c6b50e91fd6dcddfe5245",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10285",
       "triggerID" : "1a2d20c64958d09d8c9407e32cdb892ee4669d1b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10286",
       "triggerID" : "dbac26f88b14a8df88eba2ca70d566f2db53e412",
       "triggerType" : "PUSH"
     }, {
       "hash" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10294",
       "triggerID" : "34485e3a7df2712077f5987f930b7a6fa33a3986",
       "triggerType" : "PUSH"
     }, {
       "hash" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10298",
       "triggerID" : "16ff6fba9e82e35bfb202902f22e6c59ade998ff",
       "triggerType" : "PUSH"
     }, {
       "hash" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10322",
       "triggerID" : "6bb9f9ab93a77ac17a3cac40805ef284294948f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10324",
       "triggerID" : "111dd8be2ab5f681f1c79a36ea831a21dd28443b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "943826e562500bd14abc5143d7f829337facea86",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10338",
       "triggerID" : "943826e562500bd14abc5143d7f829337facea86",
       "triggerType" : "PUSH"
     }, {
       "hash" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10344",
       "triggerID" : "95500ad9b22d2dde011cf8456f212c813375c594",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1de72127453499b362801d6e912f2be1fd566775",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1de72127453499b362801d6e912f2be1fd566775",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10346",
       "triggerID" : "e3a54b8c03ab0b05c9f23a59003dabc151dbd25c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10360",
       "triggerID" : "69f96eafbf0092d70b48be559520bab2d28aa214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10363",
       "triggerID" : "9439176a9aeb4945be37deb6d2d4decaa4d4efc5",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10367",
       "triggerID" : "a32918090cf1fa4d518090cd146506685f8c18e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10740",
       "triggerID" : "644e76302818a3a4845188f23bd9bf4e404eba5e",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e9a0d9065b5d7af14e9bc969284842391a34ef62",
       "triggerType" : "PUSH"
     }, {
       "hash" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10741",
       "triggerID" : "b2d6b015aa283cba1949665771c8fb6caddb7b1f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10792",
       "triggerID" : "ab07f137f867a065b5ae3ab422fc3a498d1e888d",
       "triggerType" : "PUSH"
     }, {
       "hash" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "53c4195ab7d36e4b369b368584ec1cca55d2c2e7",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a71b8d7629b59bd969c3a10e5c90dfd020cf084f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10793",
       "triggerID" : "1218430020",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10794",
       "triggerID" : "2b9408365f959cba49d9aae5fe0a0340eaed2cc2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10809",
       "triggerID" : "fe71d7fd4e58b036e10d56c8b6f2baeeaf539214",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10812",
       "triggerID" : "c272a3a25ecf1bf461de21f518f87d05d1d65f2a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "5963b2339ae8765df0ad9972a3babc560fc2c841",
       "triggerType" : "PUSH"
     }, {
       "hash" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10828",
       "triggerID" : "4b92656adda5c86841ef978be0d87ecb43b0559f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "90e2512b63a62434b9d5a427dc6758b653adead2",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10829",
       "triggerID" : "90e2512b63a62434b9d5a427dc6758b653adead2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "625d6c767679e9ac2bcd5727003217ca6cb7667f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10831",
       "triggerID" : "625d6c767679e9ac2bcd5727003217ca6cb7667f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ea168c835001e82b78d91e4f6c8850f43b339b29",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "ea168c835001e82b78d91e4f6c8850f43b339b29",
       "triggerType" : "PUSH"
     }, {
       "hash" : "555cc3c467c4056da9455088c21e22cfd7465168",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10836",
       "triggerID" : "555cc3c467c4056da9455088c21e22cfd7465168",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7330577b3d9223c6ccd9fa7573e00c6a7436658c",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "7330577b3d9223c6ccd9fa7573e00c6a7436658c",
       "triggerType" : "PUSH"
     }, {
       "hash" : "1b5f4749d2a3146b825e3ca14a77535d51178c05",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10842",
       "triggerID" : "1b5f4749d2a3146b825e3ca14a77535d51178c05",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 1de72127453499b362801d6e912f2be1fd566775 UNKNOWN
   * e9a0d9065b5d7af14e9bc969284842391a34ef62 UNKNOWN
   * 53c4195ab7d36e4b369b368584ec1cca55d2c2e7 UNKNOWN
   * 5963b2339ae8765df0ad9972a3babc560fc2c841 UNKNOWN
   * ea168c835001e82b78d91e4f6c8850f43b339b29 UNKNOWN
   * 7330577b3d9223c6ccd9fa7573e00c6a7436658c UNKNOWN
   * 1b5f4749d2a3146b825e3ca14a77535d51178c05 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=10842) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run azure` re-run the last Azure build
   </details>


-- 
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: commits-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org