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/05/26 16:47:05 UTC

[GitHub] [hudi] wangxianghu opened a new pull request, #5697: [HUDI-4160] Make database regex of MaxwellJsonKafkaSourcePostProcesso…

wangxianghu opened a new pull request, #5697:
URL: https://github.com/apache/hudi/pull/5697

   …r optional
   
   ## *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
   
   * Make database regex of MaxwellJsonKafkaSourcePostProcessor optional*
   For binlog, we usually use one topic to deliver data from one database.
   In this scenario, the database  regex may not specify
   
   ## Brief change log
   
   *(for example:)*
     - *Modify AnnotationLocation checkstyle rule in checkstyle.xml*
   
   ## Verify this pull request
   
   This pull request is already covered by 
   org.apache.hudi.utilities.sources.TestJsonKafkaSourcePostProcessor#testMaxwellJsonKafkaSourcePostProcessor
   
   ## 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] hudi-bot commented on pull request #5697: [HUDI-4160] Make database regex of MaxwellJsonKafkaSourcePostProcesso…

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "84d0be7329f12b73553528c6a334d6fbd8850683",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "84d0be7329f12b73553528c6a334d6fbd8850683",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 84d0be7329f12b73553528c6a334d6fbd8850683 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] wangxianghu commented on a diff in pull request #5697: [HUDI-4160] Make database regex of MaxwellJsonKafkaSourcePostProcesso…

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


##########
hudi-utilities/src/main/java/org/apache/hudi/utilities/sources/processor/maxwell/MaxwellJsonKafkaSourcePostProcessor.java:
##########
@@ -49,12 +48,15 @@
  */
 public class MaxwellJsonKafkaSourcePostProcessor extends JsonKafkaSourcePostProcessor {
 
-  private static final Logger LOG = LogManager.getLogger(MaxwellJsonKafkaSourcePostProcessor.class);
-
   private static final ObjectMapper MAPPER = new ObjectMapper();
 
+  private final String databaseRegex;
+  private final String tableRegex;
+
   public MaxwellJsonKafkaSourcePostProcessor(TypedProperties props) {
     super(props);
+    databaseRegex = props.getString(Config.DATABASE_NAME_REGEX_PROP.key(), null);
+    tableRegex = props.getString(Config.TABLE_NAME_REGEX_PROP.key());

Review Comment:
   > as a common practice, we should prefer `Option<String>` over `null`
   
   done, Thanks for your time



-- 
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 #5697: [HUDI-4160] Make database regex of MaxwellJsonKafkaSourcePostProcesso…

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


##########
hudi-utilities/src/main/java/org/apache/hudi/utilities/sources/processor/maxwell/MaxwellJsonKafkaSourcePostProcessor.java:
##########
@@ -49,12 +48,15 @@
  */
 public class MaxwellJsonKafkaSourcePostProcessor extends JsonKafkaSourcePostProcessor {
 
-  private static final Logger LOG = LogManager.getLogger(MaxwellJsonKafkaSourcePostProcessor.class);
-
   private static final ObjectMapper MAPPER = new ObjectMapper();
 
+  private final String databaseRegex;
+  private final String tableRegex;
+
   public MaxwellJsonKafkaSourcePostProcessor(TypedProperties props) {
     super(props);
+    databaseRegex = props.getString(Config.DATABASE_NAME_REGEX_PROP.key(), null);
+    tableRegex = props.getString(Config.TABLE_NAME_REGEX_PROP.key());

Review Comment:
   as a common practice, we should prefer `Option<String>` over `null`



-- 
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 #5697: [HUDI-4160] Make database regex of MaxwellJsonKafkaSourcePostProcesso…

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "84d0be7329f12b73553528c6a334d6fbd8850683",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8953",
       "triggerID" : "84d0be7329f12b73553528c6a334d6fbd8850683",
       "triggerType" : "PUSH"
     }, {
       "hash" : "46b2e298664a5db4750f9ebbba4899e18fcfbabc",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8954",
       "triggerID" : "46b2e298664a5db4750f9ebbba4899e18fcfbabc",
       "triggerType" : "PUSH"
     }, {
       "hash" : "91435ed2415f1f4ad03a12f8d9eb0e177af0c7ec",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8973",
       "triggerID" : "91435ed2415f1f4ad03a12f8d9eb0e177af0c7ec",
       "triggerType" : "PUSH"
     }, {
       "hash" : "91435ed2415f1f4ad03a12f8d9eb0e177af0c7ec",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1140190748",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 91435ed2415f1f4ad03a12f8d9eb0e177af0c7ec Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8973) 
   
   <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 #5697: [HUDI-4160] Make database regex of MaxwellJsonKafkaSourcePostProcesso…

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "84d0be7329f12b73553528c6a334d6fbd8850683",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8953",
       "triggerID" : "84d0be7329f12b73553528c6a334d6fbd8850683",
       "triggerType" : "PUSH"
     }, {
       "hash" : "46b2e298664a5db4750f9ebbba4899e18fcfbabc",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8954",
       "triggerID" : "46b2e298664a5db4750f9ebbba4899e18fcfbabc",
       "triggerType" : "PUSH"
     }, {
       "hash" : "91435ed2415f1f4ad03a12f8d9eb0e177af0c7ec",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8973",
       "triggerID" : "91435ed2415f1f4ad03a12f8d9eb0e177af0c7ec",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 91435ed2415f1f4ad03a12f8d9eb0e177af0c7ec Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8973) 
   
   <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] wangxianghu merged pull request #5697: [HUDI-4160] Make database regex of MaxwellJsonKafkaSourcePostProcesso…

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


-- 
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 #5697: [HUDI-4160] Make database regex of MaxwellJsonKafkaSourcePostProcesso…

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "84d0be7329f12b73553528c6a334d6fbd8850683",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8953",
       "triggerID" : "84d0be7329f12b73553528c6a334d6fbd8850683",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 84d0be7329f12b73553528c6a334d6fbd8850683 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8953) 
   
   <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] wangxianghu commented on a diff in pull request #5697: [HUDI-4160] Make database regex of MaxwellJsonKafkaSourcePostProcesso…

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


##########
hudi-utilities/src/main/java/org/apache/hudi/utilities/sources/processor/maxwell/MaxwellJsonKafkaSourcePostProcessor.java:
##########
@@ -111,9 +113,6 @@ public JavaRDD<String> process(JavaRDD<String> maxwellJsonRecords) {
 
       // filter out target databases and tables
       if (isTargetTable(database, table)) {
-
-        LOG.info(String.format("Maxwell source processor starts process table : %s.%s", database, table));
-

Review Comment:
   There will be too much logs as it is logged in a map iterate, we'd better remove 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] wangxianghu commented on a diff in pull request #5697: [HUDI-4160] Make database regex of MaxwellJsonKafkaSourcePostProcesso…

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


##########
hudi-utilities/src/main/java/org/apache/hudi/utilities/sources/processor/maxwell/MaxwellJsonKafkaSourcePostProcessor.java:
##########
@@ -49,12 +48,15 @@
  */
 public class MaxwellJsonKafkaSourcePostProcessor extends JsonKafkaSourcePostProcessor {
 
-  private static final Logger LOG = LogManager.getLogger(MaxwellJsonKafkaSourcePostProcessor.class);
-
   private static final ObjectMapper MAPPER = new ObjectMapper();
 
+  private final String databaseRegex;
+  private final String tableRegex;

Review Comment:
   Move them out of `isTargetTable` function  for better performance.



-- 
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 #5697: [HUDI-4160] Make database regex of MaxwellJsonKafkaSourcePostProcesso…

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "84d0be7329f12b73553528c6a334d6fbd8850683",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8953",
       "triggerID" : "84d0be7329f12b73553528c6a334d6fbd8850683",
       "triggerType" : "PUSH"
     }, {
       "hash" : "46b2e298664a5db4750f9ebbba4899e18fcfbabc",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "46b2e298664a5db4750f9ebbba4899e18fcfbabc",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 84d0be7329f12b73553528c6a334d6fbd8850683 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8953) 
   * 46b2e298664a5db4750f9ebbba4899e18fcfbabc 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] wangxianghu commented on pull request #5697: [HUDI-4160] Make database regex of MaxwellJsonKafkaSourcePostProcesso…

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

   @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] hudi-bot commented on pull request #5697: [HUDI-4160] Make database regex of MaxwellJsonKafkaSourcePostProcesso…

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "84d0be7329f12b73553528c6a334d6fbd8850683",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8953",
       "triggerID" : "84d0be7329f12b73553528c6a334d6fbd8850683",
       "triggerType" : "PUSH"
     }, {
       "hash" : "46b2e298664a5db4750f9ebbba4899e18fcfbabc",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8954",
       "triggerID" : "46b2e298664a5db4750f9ebbba4899e18fcfbabc",
       "triggerType" : "PUSH"
     }, {
       "hash" : "91435ed2415f1f4ad03a12f8d9eb0e177af0c7ec",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8973",
       "triggerID" : "91435ed2415f1f4ad03a12f8d9eb0e177af0c7ec",
       "triggerType" : "PUSH"
     }, {
       "hash" : "91435ed2415f1f4ad03a12f8d9eb0e177af0c7ec",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8973",
       "triggerID" : "1140190748",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 91435ed2415f1f4ad03a12f8d9eb0e177af0c7ec Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8973) 
   
   <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 #5697: [HUDI-4160] Make database regex of MaxwellJsonKafkaSourcePostProcesso…

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "84d0be7329f12b73553528c6a334d6fbd8850683",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8953",
       "triggerID" : "84d0be7329f12b73553528c6a334d6fbd8850683",
       "triggerType" : "PUSH"
     }, {
       "hash" : "46b2e298664a5db4750f9ebbba4899e18fcfbabc",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8954",
       "triggerID" : "46b2e298664a5db4750f9ebbba4899e18fcfbabc",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 84d0be7329f12b73553528c6a334d6fbd8850683 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8953) 
   * 46b2e298664a5db4750f9ebbba4899e18fcfbabc Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8954) 
   
   <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 #5697: [HUDI-4160] Make database regex of MaxwellJsonKafkaSourcePostProcesso…

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "84d0be7329f12b73553528c6a334d6fbd8850683",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8953",
       "triggerID" : "84d0be7329f12b73553528c6a334d6fbd8850683",
       "triggerType" : "PUSH"
     }, {
       "hash" : "46b2e298664a5db4750f9ebbba4899e18fcfbabc",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8954",
       "triggerID" : "46b2e298664a5db4750f9ebbba4899e18fcfbabc",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 84d0be7329f12b73553528c6a334d6fbd8850683 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8953) 
   * 46b2e298664a5db4750f9ebbba4899e18fcfbabc Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8954) 
   
   <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 #5697: [HUDI-4160] Make database regex of MaxwellJsonKafkaSourcePostProcesso…

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "84d0be7329f12b73553528c6a334d6fbd8850683",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8953",
       "triggerID" : "84d0be7329f12b73553528c6a334d6fbd8850683",
       "triggerType" : "PUSH"
     }, {
       "hash" : "46b2e298664a5db4750f9ebbba4899e18fcfbabc",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8954",
       "triggerID" : "46b2e298664a5db4750f9ebbba4899e18fcfbabc",
       "triggerType" : "PUSH"
     }, {
       "hash" : "91435ed2415f1f4ad03a12f8d9eb0e177af0c7ec",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8973",
       "triggerID" : "91435ed2415f1f4ad03a12f8d9eb0e177af0c7ec",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 46b2e298664a5db4750f9ebbba4899e18fcfbabc Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8954) 
   * 91435ed2415f1f4ad03a12f8d9eb0e177af0c7ec Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8973) 
   
   <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 #5697: [HUDI-4160] Make database regex of MaxwellJsonKafkaSourcePostProcesso…

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "84d0be7329f12b73553528c6a334d6fbd8850683",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8953",
       "triggerID" : "84d0be7329f12b73553528c6a334d6fbd8850683",
       "triggerType" : "PUSH"
     }, {
       "hash" : "46b2e298664a5db4750f9ebbba4899e18fcfbabc",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8954",
       "triggerID" : "46b2e298664a5db4750f9ebbba4899e18fcfbabc",
       "triggerType" : "PUSH"
     }, {
       "hash" : "91435ed2415f1f4ad03a12f8d9eb0e177af0c7ec",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "91435ed2415f1f4ad03a12f8d9eb0e177af0c7ec",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 46b2e298664a5db4750f9ebbba4899e18fcfbabc Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8954) 
   * 91435ed2415f1f4ad03a12f8d9eb0e177af0c7ec 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 #5697: [HUDI-4160] Make database regex of MaxwellJsonKafkaSourcePostProcesso…

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "84d0be7329f12b73553528c6a334d6fbd8850683",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8953",
       "triggerID" : "84d0be7329f12b73553528c6a334d6fbd8850683",
       "triggerType" : "PUSH"
     }, {
       "hash" : "46b2e298664a5db4750f9ebbba4899e18fcfbabc",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8954",
       "triggerID" : "46b2e298664a5db4750f9ebbba4899e18fcfbabc",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 46b2e298664a5db4750f9ebbba4899e18fcfbabc Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8954) 
   
   <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