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/19 07:37:02 UTC

[GitHub] [hudi] wangxianghu opened a new pull request, #5632: [HUDI-4122] Fix NPE caused by adding kafka nodes

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

   ## *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
   Yesterday, when we add more nodes to kafka cluster, some of our hudi tasks failed with a NPE as below:
   Caused by: java.lang.NullPointerException
   at org.apache.hudi.utilities.sources.helpers.KafkaOffsetGen.getNextOffsetRanges(KafkaOffsetGen.java:241)
   at org.apache.hudi.utilities.sources.JsonKafkaSource.fetchNewData(JsonKafkaSource.java:67)
   at org.apache.hudi.utilities.sources.Source.fetchNext(Source.java:76)
   at org.apache.hudi.utilities.deltastreamer.SourceFormatAdapter.fetchNewDataInAvroFormat(SourceFormatAdapter.java:63)
   at org.apache.hudi.utilities.deltastreamer.DeltaSync.readFromSource(DeltaSync.java:430)
   at org.apache.hudi.utilities.deltastreamer.DeltaSync.syncOnce(DeltaSync.java:283)
   at org.apache.hudi.utilities.deltastreamer.HoodieDeltaStreamer$DeltaSyncService.lambda$startService$0(HoodieDeltaStreamer.java:641)
   ## 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] hudi-bot commented on pull request #5632: [HUDI-4122] Fix NPE caused by adding kafka nodes

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "9dcab3f9cdfa513efad3939c8af59aecf8e56d63",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8761",
       "triggerID" : "9dcab3f9cdfa513efad3939c8af59aecf8e56d63",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dcab3f9cdfa513efad3939c8af59aecf8e56d63",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8761",
       "triggerID" : "1131688165",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "9dcab3f9cdfa513efad3939c8af59aecf8e56d63",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8761",
       "triggerID" : "1132692981",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "97966b9a535c0644048fc6b02534f6171808bb28",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "97966b9a535c0644048fc6b02534f6171808bb28",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 9dcab3f9cdfa513efad3939c8af59aecf8e56d63 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8761) 
   * 97966b9a535c0644048fc6b02534f6171808bb28 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 #5632: [HUDI-4122] Fix NPE caused by adding kafka nodes

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


##########
hudi-utilities/src/main/java/org/apache/hudi/utilities/sources/helpers/KafkaOffsetGen.java:
##########
@@ -236,8 +242,7 @@ public OffsetRange[] getNextOffsetRanges(Option<String> lastCheckpointStr, long
       if (!checkTopicExists(consumer)) {
         throw new HoodieException("Kafka topic:" + topicName + " does not exist");
       }
-      List<PartitionInfo> partitionInfoList;
-      partitionInfoList = consumer.partitionsFor(topicName);

Review Comment:
   NPE is caused by `partitionInfoList `'s  being 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] alexeykudinkin commented on a diff in pull request #5632: [HUDI-4122] Fix NPE caused by adding kafka nodes

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


##########
hudi-utilities/src/main/java/org/apache/hudi/utilities/sources/helpers/KafkaOffsetGen.java:
##########
@@ -287,6 +292,32 @@ public OffsetRange[] getNextOffsetRanges(Option<String> lastCheckpointStr, long
     return CheckpointUtils.computeOffsetRanges(fromOffsets, toOffsets, numEvents);
   }
 
+  /**
+   * Fetch partition infos for given topic.
+   *
+   * @param consumer
+   * @param topicName
+   */
+  private List<PartitionInfo> fetchPartitionInfos(KafkaConsumer consumer, String topicName) {
+    long timeout = this.props.getLong(Config.KAFKA_FETCH_PARTITION_TIME_OUT.key(), Config.KAFKA_FETCH_PARTITION_TIME_OUT.defaultValue());
+    long start = System.currentTimeMillis();
+
+    List<PartitionInfo> partitionInfos;
+    do {
+      partitionInfos = consumer.partitionsFor(topicName);
+      try {
+        TimeUnit.SECONDS.sleep(10);

Review Comment:
   @wangxianghu can you please elaborate?



-- 
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 #5632: [HUDI-4122] Fix NPE caused by adding kafka nodes

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "9dcab3f9cdfa513efad3939c8af59aecf8e56d63",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "9dcab3f9cdfa513efad3939c8af59aecf8e56d63",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 9dcab3f9cdfa513efad3939c8af59aecf8e56d63 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] vburenin commented on pull request #5632: [HUDI-4122] Fix NPE caused by adding kafka nodes

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

   @nsivabalan I submitted this pull request some time ago https://github.com/apache/hudi/pull/6270


-- 
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] vburenin commented on a diff in pull request #5632: [HUDI-4122] Fix NPE caused by adding kafka nodes

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


##########
hudi-utilities/src/main/java/org/apache/hudi/utilities/sources/helpers/KafkaOffsetGen.java:
##########
@@ -287,6 +292,32 @@ public OffsetRange[] getNextOffsetRanges(Option<String> lastCheckpointStr, long
     return CheckpointUtils.computeOffsetRanges(fromOffsets, toOffsets, numEvents);
   }
 
+  /**
+   * Fetch partition infos for given topic.
+   *
+   * @param consumer
+   * @param topicName
+   */
+  private List<PartitionInfo> fetchPartitionInfos(KafkaConsumer consumer, String topicName) {
+    long timeout = this.props.getLong(Config.KAFKA_FETCH_PARTITION_TIME_OUT.key(), Config.KAFKA_FETCH_PARTITION_TIME_OUT.defaultValue());
+    long start = System.currentTimeMillis();
+
+    List<PartitionInfo> partitionInfos;
+    do {
+      partitionInfos = consumer.partitionsFor(topicName);
+      try {
+        TimeUnit.SECONDS.sleep(10);

Review Comment:
   why here is a timeout no matter what? it should not be just a straight sleep.



-- 
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 #5632: [HUDI-4122] Fix NPE caused by adding kafka nodes

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "9dcab3f9cdfa513efad3939c8af59aecf8e56d63",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8761",
       "triggerID" : "9dcab3f9cdfa513efad3939c8af59aecf8e56d63",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 9dcab3f9cdfa513efad3939c8af59aecf8e56d63 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8761) 
   
   <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 #5632: [HUDI-4122] Fix NPE caused by adding kafka nodes

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "9dcab3f9cdfa513efad3939c8af59aecf8e56d63",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8761",
       "triggerID" : "9dcab3f9cdfa513efad3939c8af59aecf8e56d63",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dcab3f9cdfa513efad3939c8af59aecf8e56d63",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8761",
       "triggerID" : "1131688165",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "9dcab3f9cdfa513efad3939c8af59aecf8e56d63",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8761",
       "triggerID" : "1132692981",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "97966b9a535c0644048fc6b02534f6171808bb28",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8796",
       "triggerID" : "97966b9a535c0644048fc6b02534f6171808bb28",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 97966b9a535c0644048fc6b02534f6171808bb28 Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8796) 
   
   <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] XuQianJin-Stars merged pull request #5632: [HUDI-4122] Fix NPE caused by adding kafka nodes

Posted by GitBox <gi...@apache.org>.
XuQianJin-Stars merged PR #5632:
URL: https://github.com/apache/hudi/pull/5632


-- 
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 #5632: [HUDI-4122] Fix NPE caused by adding kafka nodes

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

   @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 #5632: [HUDI-4122] Fix NPE caused by adding kafka nodes

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "9dcab3f9cdfa513efad3939c8af59aecf8e56d63",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8761",
       "triggerID" : "9dcab3f9cdfa513efad3939c8af59aecf8e56d63",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dcab3f9cdfa513efad3939c8af59aecf8e56d63",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8761",
       "triggerID" : "1131688165",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "9dcab3f9cdfa513efad3939c8af59aecf8e56d63",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1132692981",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 9dcab3f9cdfa513efad3939c8af59aecf8e56d63 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8761) 
   
   <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 #5632: [HUDI-4122] Fix NPE caused by adding kafka nodes

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "9dcab3f9cdfa513efad3939c8af59aecf8e56d63",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8761",
       "triggerID" : "9dcab3f9cdfa513efad3939c8af59aecf8e56d63",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 9dcab3f9cdfa513efad3939c8af59aecf8e56d63 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8761) 
   
   <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] nsivabalan commented on a diff in pull request #5632: [HUDI-4122] Fix NPE caused by adding kafka nodes

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


##########
hudi-utilities/src/main/java/org/apache/hudi/utilities/sources/helpers/KafkaOffsetGen.java:
##########
@@ -287,6 +292,32 @@ public OffsetRange[] getNextOffsetRanges(Option<String> lastCheckpointStr, long
     return CheckpointUtils.computeOffsetRanges(fromOffsets, toOffsets, numEvents);
   }
 
+  /**
+   * Fetch partition infos for given topic.
+   *
+   * @param consumer
+   * @param topicName
+   */
+  private List<PartitionInfo> fetchPartitionInfos(KafkaConsumer consumer, String topicName) {
+    long timeout = this.props.getLong(Config.KAFKA_FETCH_PARTITION_TIME_OUT.key(), Config.KAFKA_FETCH_PARTITION_TIME_OUT.defaultValue());
+    long start = System.currentTimeMillis();
+
+    List<PartitionInfo> partitionInfos;
+    do {
+      partitionInfos = consumer.partitionsFor(topicName);
+      try {
+        TimeUnit.SECONDS.sleep(10);

Review Comment:
   yes, I don't see a reason why we sleep here. May be, if first call fails, we can have a backup before retrying, but why sleep even if the call succeeds. Also, 10 secs is lot 1 or 2 secs would suffice. 



-- 
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 #5632: [HUDI-4122] Fix NPE caused by adding kafka nodes

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

   @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 #5632: [HUDI-4122] Fix NPE caused by adding kafka nodes

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "9dcab3f9cdfa513efad3939c8af59aecf8e56d63",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8761",
       "triggerID" : "9dcab3f9cdfa513efad3939c8af59aecf8e56d63",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dcab3f9cdfa513efad3939c8af59aecf8e56d63",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8761",
       "triggerID" : "1131688165",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "9dcab3f9cdfa513efad3939c8af59aecf8e56d63",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8761",
       "triggerID" : "1132692981",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 9dcab3f9cdfa513efad3939c8af59aecf8e56d63 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8761) 
   
   <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 #5632: [HUDI-4122] Fix NPE caused by adding kafka nodes

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "9dcab3f9cdfa513efad3939c8af59aecf8e56d63",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8761",
       "triggerID" : "9dcab3f9cdfa513efad3939c8af59aecf8e56d63",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dcab3f9cdfa513efad3939c8af59aecf8e56d63",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8761",
       "triggerID" : "1131688165",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "9dcab3f9cdfa513efad3939c8af59aecf8e56d63",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8761",
       "triggerID" : "1132692981",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "97966b9a535c0644048fc6b02534f6171808bb28",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8796",
       "triggerID" : "97966b9a535c0644048fc6b02534f6171808bb28",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 9dcab3f9cdfa513efad3939c8af59aecf8e56d63 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8761) 
   * 97966b9a535c0644048fc6b02534f6171808bb28 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8796) 
   
   <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 #5632: [HUDI-4122] Fix NPE caused by adding kafka nodes

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

   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "9dcab3f9cdfa513efad3939c8af59aecf8e56d63",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8761",
       "triggerID" : "9dcab3f9cdfa513efad3939c8af59aecf8e56d63",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dcab3f9cdfa513efad3939c8af59aecf8e56d63",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "1131688165",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 9dcab3f9cdfa513efad3939c8af59aecf8e56d63 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=8761) 
   
   <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 #5632: [HUDI-4122] Fix NPE caused by adding kafka nodes

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

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