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 2021/08/18 12:03:06 UTC

[GitHub] [hudi] swuferhong opened a new pull request #3494: [HUDI-2316] Support Flink batch bootstrap index and refactor HoodieTa…

swuferhong opened a new pull request #3494:
URL: https://github.com/apache/hudi/pull/3494


   …bleSink
   
   ## *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
   
   Support Flink batch bootstrap index and refactor HoodieTableSink.
   
   ## 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 #3494: [HUDI-2316] Support Flink batch upsert

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f1e7e527c726220b249a0b23697af4e56cfec4f9",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "f1e7e527c726220b249a0b23697af4e56cfec4f9",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f1e7e527c726220b249a0b23697af4e56cfec4f9 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run travis` re-run the last Travis build
    - `@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] danny0405 merged pull request #3494: [HUDI-2316] Support Flink batch upsert

Posted by GitBox <gi...@apache.org>.
danny0405 merged pull request #3494:
URL: https://github.com/apache/hudi/pull/3494


   


-- 
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] danny0405 commented on a change in pull request #3494: [HUDI-2316] Support Flink batch upsert

Posted by GitBox <gi...@apache.org>.
danny0405 commented on a change in pull request #3494:
URL: https://github.com/apache/hudi/pull/3494#discussion_r691172583



##########
File path: hudi-flink/src/main/java/org/apache/hudi/sink/bootstrap/batch/BatchBootstrapFunction.java
##########
@@ -0,0 +1,65 @@
+/*
+ * 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.
+ */
+
+package org.apache.hudi.sink.bootstrap.batch;
+
+import org.apache.hudi.common.model.HoodieRecord;
+import org.apache.hudi.sink.bootstrap.BootstrapFunction;
+import org.apache.hudi.util.StreamerUtil;
+
+import org.apache.flink.configuration.Configuration;
+import org.apache.flink.util.Collector;
+
+import java.util.HashSet;
+import java.util.Set;
+
+/**
+ * The function to load specify partition index from existing hoodieTable.
+ */
+public class BatchBootstrapFunction<I, O extends HoodieRecord>
+    extends BootstrapFunction<I, O> {
+
+  private Set<String> partitionPathSet;
+  private boolean haveSuccessCommit;
+
+  public BatchBootstrapFunction(Configuration conf) {
+    super(conf);
+  }
+
+  @Override
+  public void open(Configuration parameters) throws Exception {
+    super.open(parameters);
+    this.partitionPathSet = new HashSet<>();
+    this.haveSuccessCommit = StreamerUtil.haveSuccessCommit(hoodieTable.getMetaClient());
+  }

Review comment:
       haveSuccessCommit => haveSuccessfulCommits




-- 
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 edited a comment on pull request #3494: [HUDI-2316] Support Flink batch upsert

Posted by GitBox <gi...@apache.org>.
hudi-bot edited a comment on pull request #3494:
URL: https://github.com/apache/hudi/pull/3494#issuecomment-901058220






-- 
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] danny0405 commented on a change in pull request #3494: [HUDI-2316] Support Flink batch upsert

Posted by GitBox <gi...@apache.org>.
danny0405 commented on a change in pull request #3494:
URL: https://github.com/apache/hudi/pull/3494#discussion_r691172583



##########
File path: hudi-flink/src/main/java/org/apache/hudi/sink/bootstrap/batch/BatchBootstrapFunction.java
##########
@@ -0,0 +1,65 @@
+/*
+ * 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.
+ */
+
+package org.apache.hudi.sink.bootstrap.batch;
+
+import org.apache.hudi.common.model.HoodieRecord;
+import org.apache.hudi.sink.bootstrap.BootstrapFunction;
+import org.apache.hudi.util.StreamerUtil;
+
+import org.apache.flink.configuration.Configuration;
+import org.apache.flink.util.Collector;
+
+import java.util.HashSet;
+import java.util.Set;
+
+/**
+ * The function to load specify partition index from existing hoodieTable.
+ */
+public class BatchBootstrapFunction<I, O extends HoodieRecord>
+    extends BootstrapFunction<I, O> {
+
+  private Set<String> partitionPathSet;
+  private boolean haveSuccessCommit;
+
+  public BatchBootstrapFunction(Configuration conf) {
+    super(conf);
+  }
+
+  @Override
+  public void open(Configuration parameters) throws Exception {
+    super.open(parameters);
+    this.partitionPathSet = new HashSet<>();
+    this.haveSuccessCommit = StreamerUtil.haveSuccessCommit(hoodieTable.getMetaClient());
+  }

Review comment:
       haveSuccessCommit => haveSuccessCommits




-- 
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] danny0405 commented on a change in pull request #3494: [HUDI-2316] Support Flink batch upsert

Posted by GitBox <gi...@apache.org>.
danny0405 commented on a change in pull request #3494:
URL: https://github.com/apache/hudi/pull/3494#discussion_r691172583



##########
File path: hudi-flink/src/main/java/org/apache/hudi/sink/bootstrap/batch/BatchBootstrapFunction.java
##########
@@ -0,0 +1,65 @@
+/*
+ * 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.
+ */
+
+package org.apache.hudi.sink.bootstrap.batch;
+
+import org.apache.hudi.common.model.HoodieRecord;
+import org.apache.hudi.sink.bootstrap.BootstrapFunction;
+import org.apache.hudi.util.StreamerUtil;
+
+import org.apache.flink.configuration.Configuration;
+import org.apache.flink.util.Collector;
+
+import java.util.HashSet;
+import java.util.Set;
+
+/**
+ * The function to load specify partition index from existing hoodieTable.
+ */
+public class BatchBootstrapFunction<I, O extends HoodieRecord>
+    extends BootstrapFunction<I, O> {
+
+  private Set<String> partitionPathSet;
+  private boolean haveSuccessCommit;
+
+  public BatchBootstrapFunction(Configuration conf) {
+    super(conf);
+  }
+
+  @Override
+  public void open(Configuration parameters) throws Exception {
+    super.open(parameters);
+    this.partitionPathSet = new HashSet<>();
+    this.haveSuccessCommit = StreamerUtil.haveSuccessCommit(hoodieTable.getMetaClient());
+  }

Review comment:
       haveSuccessCommit => haveSuccessCommits

##########
File path: hudi-flink/src/main/java/org/apache/hudi/sink/bootstrap/batch/BatchBootstrapFunction.java
##########
@@ -0,0 +1,65 @@
+/*
+ * 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.
+ */
+
+package org.apache.hudi.sink.bootstrap.batch;
+
+import org.apache.hudi.common.model.HoodieRecord;
+import org.apache.hudi.sink.bootstrap.BootstrapFunction;
+import org.apache.hudi.util.StreamerUtil;
+
+import org.apache.flink.configuration.Configuration;
+import org.apache.flink.util.Collector;
+
+import java.util.HashSet;
+import java.util.Set;
+
+/**
+ * The function to load specify partition index from existing hoodieTable.
+ */
+public class BatchBootstrapFunction<I, O extends HoodieRecord>
+    extends BootstrapFunction<I, O> {
+
+  private Set<String> partitionPathSet;
+  private boolean haveSuccessCommit;
+
+  public BatchBootstrapFunction(Configuration conf) {
+    super(conf);
+  }
+
+  @Override
+  public void open(Configuration parameters) throws Exception {
+    super.open(parameters);
+    this.partitionPathSet = new HashSet<>();
+    this.haveSuccessCommit = StreamerUtil.haveSuccessCommit(hoodieTable.getMetaClient());
+  }

Review comment:
       haveSuccessCommit => haveSuccessfulCommits




-- 
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 edited a comment on pull request #3494: [HUDI-2316] Support Flink batch upsert

Posted by GitBox <gi...@apache.org>.
hudi-bot edited a comment on pull request #3494:
URL: https://github.com/apache/hudi/pull/3494#issuecomment-901058220


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f1e7e527c726220b249a0b23697af4e56cfec4f9",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=1799",
       "triggerID" : "f1e7e527c726220b249a0b23697af4e56cfec4f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e5922c33b6d3ea1233ee909d1d39cd54cec1f317",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e5922c33b6d3ea1233ee909d1d39cd54cec1f317",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f1e7e527c726220b249a0b23697af4e56cfec4f9 Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=1799) 
   * e5922c33b6d3ea1233ee909d1d39cd54cec1f317 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run travis` re-run the last Travis build
    - `@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 #3494: [HUDI-2316] Support Flink batch upsert

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f1e7e527c726220b249a0b23697af4e56cfec4f9",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "f1e7e527c726220b249a0b23697af4e56cfec4f9",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f1e7e527c726220b249a0b23697af4e56cfec4f9 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run travis` re-run the last Travis build
    - `@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 edited a comment on pull request #3494: [HUDI-2316] Support Flink batch upsert

Posted by GitBox <gi...@apache.org>.
hudi-bot edited a comment on pull request #3494:
URL: https://github.com/apache/hudi/pull/3494#issuecomment-901058220


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f1e7e527c726220b249a0b23697af4e56cfec4f9",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=1799",
       "triggerID" : "f1e7e527c726220b249a0b23697af4e56cfec4f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e5922c33b6d3ea1233ee909d1d39cd54cec1f317",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e5922c33b6d3ea1233ee909d1d39cd54cec1f317",
       "triggerType" : "PUSH"
     }, {
       "hash" : "0ba5a4e97d90bc12989a3dff57498829b9d098a3",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=1801",
       "triggerID" : "0ba5a4e97d90bc12989a3dff57498829b9d098a3",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * e5922c33b6d3ea1233ee909d1d39cd54cec1f317 UNKNOWN
   * 0ba5a4e97d90bc12989a3dff57498829b9d098a3 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=1801) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run travis` re-run the last Travis build
    - `@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 edited a comment on pull request #3494: [HUDI-2316] Support Flink batch upsert

Posted by GitBox <gi...@apache.org>.
hudi-bot edited a comment on pull request #3494:
URL: https://github.com/apache/hudi/pull/3494#issuecomment-901058220


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f1e7e527c726220b249a0b23697af4e56cfec4f9",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=1799",
       "triggerID" : "f1e7e527c726220b249a0b23697af4e56cfec4f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e5922c33b6d3ea1233ee909d1d39cd54cec1f317",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e5922c33b6d3ea1233ee909d1d39cd54cec1f317",
       "triggerType" : "PUSH"
     }, {
       "hash" : "0ba5a4e97d90bc12989a3dff57498829b9d098a3",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "0ba5a4e97d90bc12989a3dff57498829b9d098a3",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f1e7e527c726220b249a0b23697af4e56cfec4f9 Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=1799) 
   * e5922c33b6d3ea1233ee909d1d39cd54cec1f317 UNKNOWN
   * 0ba5a4e97d90bc12989a3dff57498829b9d098a3 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run travis` re-run the last Travis build
    - `@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 edited a comment on pull request #3494: [HUDI-2316] Support Flink batch upsert

Posted by GitBox <gi...@apache.org>.
hudi-bot edited a comment on pull request #3494:
URL: https://github.com/apache/hudi/pull/3494#issuecomment-901058220


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f1e7e527c726220b249a0b23697af4e56cfec4f9",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=1799",
       "triggerID" : "f1e7e527c726220b249a0b23697af4e56cfec4f9",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f1e7e527c726220b249a0b23697af4e56cfec4f9 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=1799) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run travis` re-run the last Travis build
    - `@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 edited a comment on pull request #3494: [HUDI-2316] Support Flink batch upsert

Posted by GitBox <gi...@apache.org>.
hudi-bot edited a comment on pull request #3494:
URL: https://github.com/apache/hudi/pull/3494#issuecomment-901058220


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f1e7e527c726220b249a0b23697af4e56cfec4f9",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=1799",
       "triggerID" : "f1e7e527c726220b249a0b23697af4e56cfec4f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e5922c33b6d3ea1233ee909d1d39cd54cec1f317",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e5922c33b6d3ea1233ee909d1d39cd54cec1f317",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f1e7e527c726220b249a0b23697af4e56cfec4f9 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=1799) 
   * e5922c33b6d3ea1233ee909d1d39cd54cec1f317 UNKNOWN
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run travis` re-run the last Travis build
    - `@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 edited a comment on pull request #3494: [HUDI-2316] Support Flink batch upsert

Posted by GitBox <gi...@apache.org>.
hudi-bot edited a comment on pull request #3494:
URL: https://github.com/apache/hudi/pull/3494#issuecomment-901058220


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f1e7e527c726220b249a0b23697af4e56cfec4f9",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=1799",
       "triggerID" : "f1e7e527c726220b249a0b23697af4e56cfec4f9",
       "triggerType" : "PUSH"
     }, {
       "hash" : "e5922c33b6d3ea1233ee909d1d39cd54cec1f317",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "e5922c33b6d3ea1233ee909d1d39cd54cec1f317",
       "triggerType" : "PUSH"
     }, {
       "hash" : "0ba5a4e97d90bc12989a3dff57498829b9d098a3",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=1801",
       "triggerID" : "0ba5a4e97d90bc12989a3dff57498829b9d098a3",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f1e7e527c726220b249a0b23697af4e56cfec4f9 Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=1799) 
   * e5922c33b6d3ea1233ee909d1d39cd54cec1f317 UNKNOWN
   * 0ba5a4e97d90bc12989a3dff57498829b9d098a3 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=1801) 
   
   <details>
   <summary>Bot commands</summary>
     @hudi-bot supports the following commands:
   
    - `@hudi-bot run travis` re-run the last Travis build
    - `@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