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/11/17 15:36:40 UTC

[GitHub] [hudi] codope opened a new pull request #4020: [WIP][HUDI-2783] Upgrade HBase

codope opened a new pull request #4020:
URL: https://github.com/apache/hudi/pull/4020


   ## What is the purpose of the pull request
   
   Upgrade HBase version from 1.2.3 to 2.4.8.
   
   ## Brief change log
   
   - KeyValue.KVComparator is deprecated in 2.x and completely removed from 3.x. We need to extend CellComparatorImpl which implements CellComparator interface.
   - HBase 2.x reader and writer factory methods changed.
   
   ## 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] xiarixiaoyao commented on a change in pull request #4020: [WIP][HUDI-2783] Upgrade HBase

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



##########
File path: hudi-common/src/main/java/org/apache/hudi/io/storage/HoodieHFileReader.java
##########
@@ -72,56 +75,58 @@
   public HoodieHFileReader(Configuration configuration, Path path, CacheConfig cacheConfig) throws IOException {
     this.conf = configuration;
     this.path = path;
-    this.reader = HFile.createReader(FSUtils.getFs(path.toString(), configuration), path, cacheConfig, conf);
+    this.reader = HFile.createReader(getFs(path.toString(), configuration), path, cacheConfig, true, conf);
   }
 
   public HoodieHFileReader(Configuration configuration, Path path, CacheConfig cacheConfig, FileSystem inlineFs) throws IOException {
     this.conf = configuration;
     this.path = path;
     this.fsDataInputStream = inlineFs.open(path);
-    this.reader = HFile.createReader(inlineFs, path, cacheConfig, configuration);
+    this.reader = HFile.createReader(inlineFs, path, cacheConfig, true, configuration);
   }
 
   public HoodieHFileReader(byte[] content) throws IOException {
     Configuration conf = new Configuration();
     Path path = new Path("hoodie");
     SeekableByteArrayInputStream bis = new SeekableByteArrayInputStream(content);
     FSDataInputStream fsdis = new FSDataInputStream(bis);
-    this.reader = HFile.createReader(FSUtils.getFs("hoodie", conf), path, new FSDataInputStreamWrapper(fsdis),
-        content.length, new CacheConfig(conf), conf);
+    FSDataInputStreamWrapper stream = new FSDataInputStreamWrapper(fsdis);
+    ReaderContext context = new ReaderContextBuilder()
+            .withFilePath(path)
+            .withInputStreamWrapper(stream)
+            .withFileSize(getFs("hoodie", conf).getFileStatus(path).getLen())
+            .withFileSystem(stream.getHfs())
+            .withPrimaryReplicaReader(true)
+            .withReaderType(ReaderContext.ReaderType.STREAM)
+            .build();
+    HFileInfo fileInfo = new HFileInfo(context, conf);
+    this.reader = HFile.createReader(context, fileInfo, new CacheConfig(conf), conf);
+    fileInfo.initMetaAndIndex(reader);
   }
 
   @Override
   public String[] readMinMaxRecordKeys() {
-    try {
-      Map<byte[], byte[]> fileInfo = reader.loadFileInfo();
-      return new String[] { new String(fileInfo.get(KEY_MIN_RECORD.getBytes())),
-          new String(fileInfo.get(KEY_MAX_RECORD.getBytes()))};
-    } catch (IOException e) {
-      throw new HoodieException("Could not read min/max record key out of file information block correctly from path", e);
-    }
+    HFileInfo fileInfo = reader.getHFileInfo();
+    return new String[] { new String(fileInfo.get(KEY_MIN_RECORD.getBytes())),
+        new String(fileInfo.get(KEY_MAX_RECORD.getBytes()))};
   }
 
   @Override
   public Schema getSchema() {
     if (schema == null) {
-      try {
-        Map<byte[], byte[]> fileInfo = reader.loadFileInfo();
-        schema = new Schema.Parser().parse(new String(fileInfo.get(KEY_SCHEMA.getBytes())));
-      } catch (IOException e) {
-        throw new HoodieException("Could not read schema of file from path", e);
-      }
+      HFileInfo fileInfo = reader.getHFileInfo();
+      schema = new Schema.Parser().parse(new String(fileInfo.get(KEY_SCHEMA.getBytes())));
     }
 
     return schema;
   }
 
   @Override
   public BloomFilter readBloomFilter() {
-    Map<byte[], byte[]> fileInfo;
+    HFileInfo fileInfo;
     try {
-      fileInfo = reader.loadFileInfo();
-      ByteBuffer serializedFilter = reader.getMetaBlock(KEY_BLOOM_FILTER_META_BLOCK, false);
+      fileInfo = reader.getHFileInfo();

Review comment:
       A little worried,This method does not exist even in hbase2.2.3




-- 
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 #4020: [WIP][HUDI-2783] Upgrade HBase

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 9dc39a823815dce3891c369489ccb68f2948cdc8 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465) 
   
   <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 #4020: [WIP][HUDI-2783] Upgrade HBase

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 6e7f2040e65877a742de84f4dac619d1294cb49a Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440) 
   
   <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 removed a comment on pull request #4020: [WIP][HUDI-1180] Upgrade HBase to 2.4.9

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100",
       "triggerID" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129",
       "triggerID" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4133",
       "triggerID" : "990219827",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4874",
       "triggerID" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c904e8f523b440a6b05ff089241b633f98f965fa",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6105",
       "triggerID" : "c904e8f523b440a6b05ff089241b633f98f965fa",
       "triggerType" : "PUSH"
     }, {
       "hash" : "aaaa830c3628423ff7d308016fa2ace12eac9298",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6106",
       "triggerID" : "aaaa830c3628423ff7d308016fa2ace12eac9298",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * c904e8f523b440a6b05ff089241b633f98f965fa Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6105) 
   * aaaa830c3628423ff7d308016fa2ace12eac9298 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6106) 
   
   <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 #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100",
       "triggerID" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129",
       "triggerID" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4133",
       "triggerID" : "990219827",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4874",
       "triggerID" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 790d2ba4b72e6174d90fb0f7fb15abf72f173181 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129) Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4133) 
   * b8a7bfaa1a64c979809f656503eb44c9e173a450 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4874) 
   
   <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 removed a comment on pull request #4020: [WIP][HUDI-1180] Upgrade HBase to 2.4.9

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100",
       "triggerID" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129",
       "triggerID" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4133",
       "triggerID" : "990219827",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4874",
       "triggerID" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c904e8f523b440a6b05ff089241b633f98f965fa",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6105",
       "triggerID" : "c904e8f523b440a6b05ff089241b633f98f965fa",
       "triggerType" : "PUSH"
     }, {
       "hash" : "aaaa830c3628423ff7d308016fa2ace12eac9298",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "aaaa830c3628423ff7d308016fa2ace12eac9298",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * b8a7bfaa1a64c979809f656503eb44c9e173a450 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4874) 
   * c904e8f523b440a6b05ff089241b633f98f965fa Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6105) 
   * aaaa830c3628423ff7d308016fa2ace12eac9298 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 #4020: [WIP][HUDI-1180] Upgrade HBase to 2.4.9

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100",
       "triggerID" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129",
       "triggerID" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4133",
       "triggerID" : "990219827",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4874",
       "triggerID" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c904e8f523b440a6b05ff089241b633f98f965fa",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6105",
       "triggerID" : "c904e8f523b440a6b05ff089241b633f98f965fa",
       "triggerType" : "PUSH"
     }, {
       "hash" : "aaaa830c3628423ff7d308016fa2ace12eac9298",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6106",
       "triggerID" : "aaaa830c3628423ff7d308016fa2ace12eac9298",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * c904e8f523b440a6b05ff089241b633f98f965fa Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6105) 
   * aaaa830c3628423ff7d308016fa2ace12eac9298 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6106) 
   
   <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 #4020: [WIP][HUDI-1180] Upgrade HBase to 2.4.9

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100",
       "triggerID" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129",
       "triggerID" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4133",
       "triggerID" : "990219827",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4874",
       "triggerID" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c904e8f523b440a6b05ff089241b633f98f965fa",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6105",
       "triggerID" : "c904e8f523b440a6b05ff089241b633f98f965fa",
       "triggerType" : "PUSH"
     }, {
       "hash" : "aaaa830c3628423ff7d308016fa2ace12eac9298",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "aaaa830c3628423ff7d308016fa2ace12eac9298",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * c904e8f523b440a6b05ff089241b633f98f965fa Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6105) 
   * aaaa830c3628423ff7d308016fa2ace12eac9298 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 removed a comment on pull request #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 72ea77955da505b679945dc92ea0dd2d597bcedf Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098) 
   * a23ba86033f3215c9f57118742189ae844c6c850 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 #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 72ea77955da505b679945dc92ea0dd2d597bcedf Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098) 
   * a23ba86033f3215c9f57118742189ae844c6c850 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 removed a comment on pull request #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100",
       "triggerID" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129",
       "triggerID" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a23ba86033f3215c9f57118742189ae844c6c850 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100) 
   * 790d2ba4b72e6174d90fb0f7fb15abf72f173181 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129) 
   
   <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 change in pull request #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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



##########
File path: hudi-common/src/main/java/org/apache/hudi/io/storage/HoodieHFileReader.java
##########
@@ -170,19 +175,19 @@ public BloomFilter readBloomFilter() {
   }
 
   public List<Pair<String, R>> readAllRecords() throws IOException {
-    Schema schema = new Schema.Parser().parse(new String(reader.loadFileInfo().get(KEY_SCHEMA.getBytes())));
+    Schema schema = new Schema.Parser().parse(new String(reader.getHFileInfo().get(KEY_SCHEMA.getBytes())));
     return readAllRecords(schema, schema);
   }
 
   public List<Pair<String, R>> readRecords(List<String> keys) throws IOException {
-    reader.loadFileInfo();
-    Schema schema = new Schema.Parser().parse(new String(reader.loadFileInfo().get(KEY_SCHEMA.getBytes())));
+    reader.getHFileInfo();

Review comment:
       Why are we doing this here? 

##########
File path: packaging/hudi-hadoop-mr-bundle/pom.xml
##########
@@ -202,5 +216,35 @@
         </exclusion>
       </exclusions>
     </dependency>
+    <dependency>
+      <groupId>org.apache.hbase</groupId>
+      <artifactId>hbase-client</artifactId>
+      <version>${hbase.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hbase</groupId>
+      <artifactId>hbase-protocol-shaded</artifactId>
+      <version>${hbase.version}</version>

Review comment:
       Shouldn't this be `hbase.shaded.version`




-- 
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 removed a comment on pull request #4020: [WIP][HUDI-2783] Upgrade HBase

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * ca86e9dd56ab5b804d3cfca17690423ed49341c1 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683) 
   
   <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 #4020: [WIP][HUDI-2783] Upgrade HBase

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689) 
   * 548c193ffe432033be61ca5a592f6d9760b5ebb0 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697) 
   
   <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 removed a comment on pull request #4020: [WIP][HUDI-2783] Upgrade HBase

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689) 
   
   <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] yihua closed pull request #4020: [WIP][HUDI-1180] Upgrade HBase to 2.4.9

Posted by GitBox <gi...@apache.org>.
yihua closed pull request #4020:
URL: https://github.com/apache/hudi/pull/4020


   


-- 
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] yihua commented on pull request #4020: [WIP][HUDI-1180] Upgrade HBase to 2.4.9

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


   There are quite some changes on master that conflict with this PR, especially on dependencies and bundling.  I'm going to open a new PR and rework the changes based on latest master.  I'll keep this PR as a separate one so I can refer to it when needed.


-- 
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 #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100",
       "triggerID" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 72ea77955da505b679945dc92ea0dd2d597bcedf Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098) 
   * a23ba86033f3215c9f57118742189ae844c6c850 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100) 
   
   <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 removed a comment on pull request #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 72ea77955da505b679945dc92ea0dd2d597bcedf Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098) 
   
   <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 #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100",
       "triggerID" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a23ba86033f3215c9f57118742189ae844c6c850 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100) 
   
   <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 #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100",
       "triggerID" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a23ba86033f3215c9f57118742189ae844c6c850 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100) 
   * 790d2ba4b72e6174d90fb0f7fb15abf72f173181 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 removed a comment on pull request #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100",
       "triggerID" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a23ba86033f3215c9f57118742189ae844c6c850 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100) 
   
   <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 #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 548c193ffe432033be61ca5a592f6d9760b5ebb0 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697) 
   * 72ea77955da505b679945dc92ea0dd2d597bcedf Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098) 
   
   <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] danny0405 commented on a change in pull request #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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



##########
File path: packaging/hudi-flink-bundle/pom.xml
##########
@@ -645,9 +649,29 @@
     </dependency>
     <dependency>
       <groupId>org.apache.hbase</groupId>
-      <artifactId>hbase-protocol</artifactId>
+      <artifactId>hbase-protocol-shaded</artifactId>
       <version>${hbase.version}</version>
     </dependency>
+    <dependency>
+      <groupId>org.apache.hbase.thirdparty</groupId>
+      <artifactId>hbase-shaded-miscellaneous</artifactId>
+      <version>${hbase-thirdparty.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hbase.thirdparty</groupId>
+      <artifactId>hbase-shaded-netty</artifactId>
+      <version>${hbase-thirdparty.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hbase</groupId>
+      <artifactId>hbase-hadoop-compat</artifactId>
+      <version>${hbase.version}</version>
+    </dependency>

Review comment:
       Too many new jar dependencies and i'm worried about the conflicts, we must exclude the jars that are conflict-prone like google guava explicitly if there are indirect dependency.




-- 
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 removed a comment on pull request #4020: [WIP][HUDI-2783] Upgrade HBase

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 3b8266b0703c87eeb66f899b6c9f34c25f5b251b Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524) 
   * ca86e9dd56ab5b804d3cfca17690423ed49341c1 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 removed a comment on pull request #4020: [WIP][HUDI-2783] Upgrade HBase

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * ca86e9dd56ab5b804d3cfca17690423ed49341c1 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683) 
   * 7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689) 
   
   <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] codope commented on pull request #4020: [WIP][HUDI-2783] Upgrade HBase

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


   @danny0405 Could you please help in testing this patch for Flink?


-- 
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 removed a comment on pull request #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100",
       "triggerID" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129",
       "triggerID" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4133",
       "triggerID" : "990219827",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 790d2ba4b72e6174d90fb0f7fb15abf72f173181 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129) Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4133) 
   * b8a7bfaa1a64c979809f656503eb44c9e173a450 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 removed a comment on pull request #4020: [WIP][HUDI-2783] Upgrade HBase

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 6e7f2040e65877a742de84f4dac619d1294cb49a Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440) 
   * 9dc39a823815dce3891c369489ccb68f2948cdc8 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465) 
   
   <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 #4020: [WIP][HUDI-2783] Upgrade HBase

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 3b8266b0703c87eeb66f899b6c9f34c25f5b251b Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524) 
   * ca86e9dd56ab5b804d3cfca17690423ed49341c1 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683) 
   
   <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 #4020: [WIP][HUDI-2783] Upgrade HBase

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689) 
   
   <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 removed a comment on pull request #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689) 
   * 548c193ffe432033be61ca5a592f6d9760b5ebb0 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697) 
   
   <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 removed a comment on pull request #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 548c193ffe432033be61ca5a592f6d9760b5ebb0 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697) 
   
   <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 #4020: [WIP][HUDI-1180] Upgrade HBase to 2.4.9

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100",
       "triggerID" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129",
       "triggerID" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4133",
       "triggerID" : "990219827",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4874",
       "triggerID" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c904e8f523b440a6b05ff089241b633f98f965fa",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "c904e8f523b440a6b05ff089241b633f98f965fa",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * b8a7bfaa1a64c979809f656503eb44c9e173a450 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4874) 
   * c904e8f523b440a6b05ff089241b633f98f965fa 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 pull request #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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


   I've been trying to address to fix IT tests after HBase upgrade and kept hitting HBase classes conflicts b/w our HBase deps and Hadoop 2.x deps (there are non-BWC changes).
   
   Tried shading our HBase classes but that didn't go too well, and as such decided to go ahead and try upgrading Hadoop to 3.3.x branch.
   
   It's WIP and you can track progress in the following PR #4286


-- 
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 removed a comment on pull request #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100",
       "triggerID" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129",
       "triggerID" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 790d2ba4b72e6174d90fb0f7fb15abf72f173181 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129) 
   
   <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 removed a comment on pull request #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100",
       "triggerID" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a23ba86033f3215c9f57118742189ae844c6c850 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100) 
   * 790d2ba4b72e6174d90fb0f7fb15abf72f173181 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 #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100",
       "triggerID" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129",
       "triggerID" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4133",
       "triggerID" : "990219827",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 790d2ba4b72e6174d90fb0f7fb15abf72f173181 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129) Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4133) 
   * b8a7bfaa1a64c979809f656503eb44c9e173a450 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 removed a comment on pull request #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100",
       "triggerID" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129",
       "triggerID" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4133",
       "triggerID" : "990219827",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 790d2ba4b72e6174d90fb0f7fb15abf72f173181 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129) Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4133) 
   
   <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 removed a comment on pull request #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100",
       "triggerID" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129",
       "triggerID" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4133",
       "triggerID" : "990219827",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4874",
       "triggerID" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 790d2ba4b72e6174d90fb0f7fb15abf72f173181 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129) Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4133) 
   * b8a7bfaa1a64c979809f656503eb44c9e173a450 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4874) 
   
   <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 removed a comment on pull request #4020: [WIP][HUDI-2783] Upgrade HBase

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 3b8266b0703c87eeb66f899b6c9f34c25f5b251b Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524) 
   * ca86e9dd56ab5b804d3cfca17690423ed49341c1 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683) 
   
   <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 removed a comment on pull request #4020: [WIP][HUDI-2783] Upgrade HBase

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 9dc39a823815dce3891c369489ccb68f2948cdc8 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465) 
   * 3b8266b0703c87eeb66f899b6c9f34c25f5b251b 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 removed a comment on pull request #4020: [WIP][HUDI-2783] Upgrade HBase

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 9dc39a823815dce3891c369489ccb68f2948cdc8 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465) 
   
   <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 removed a comment on pull request #4020: [WIP][HUDI-2783] Upgrade HBase

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 6e7f2040e65877a742de84f4dac619d1294cb49a Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440) 
   
   <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] yihua removed a comment on pull request #4020: [WIP][HUDI-1180] Upgrade HBase to 2.4.9

Posted by GitBox <gi...@apache.org>.
yihua removed a comment on pull request #4020:
URL: https://github.com/apache/hudi/pull/4020#issuecomment-1043414110


   There are quite some changes on master that conflict with this PR, especially on dependencies and bundling.  I'm going to open a new PR and rework the changes based on latest master.  I'll keep this PR as a separate one so I can refer to it when needed.


-- 
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 #4020: [WIP][HUDI-1180] Upgrade HBase to 2.4.9

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100",
       "triggerID" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129",
       "triggerID" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4133",
       "triggerID" : "990219827",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4874",
       "triggerID" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c904e8f523b440a6b05ff089241b633f98f965fa",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6105",
       "triggerID" : "c904e8f523b440a6b05ff089241b633f98f965fa",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * b8a7bfaa1a64c979809f656503eb44c9e173a450 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4874) 
   * c904e8f523b440a6b05ff089241b633f98f965fa Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6105) 
   
   <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 removed a comment on pull request #4020: [WIP][HUDI-1180] Upgrade HBase to 2.4.9

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100",
       "triggerID" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129",
       "triggerID" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4133",
       "triggerID" : "990219827",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4874",
       "triggerID" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c904e8f523b440a6b05ff089241b633f98f965fa",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "c904e8f523b440a6b05ff089241b633f98f965fa",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * b8a7bfaa1a64c979809f656503eb44c9e173a450 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4874) 
   * c904e8f523b440a6b05ff089241b633f98f965fa 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 #4020: [WIP][HUDI-2783] Upgrade HBase

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * ca86e9dd56ab5b804d3cfca17690423ed49341c1 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683) 
   
   <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 #4020: [WIP][HUDI-2783] Upgrade HBase

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 6e7f2040e65877a742de84f4dac619d1294cb49a Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440) 
   * 9dc39a823815dce3891c369489ccb68f2948cdc8 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 #4020: [WIP][HUDI-2783] Upgrade HBase

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 9dc39a823815dce3891c369489ccb68f2948cdc8 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465) 
   * 3b8266b0703c87eeb66f899b6c9f34c25f5b251b Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524) 
   
   <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 removed a comment on pull request #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 548c193ffe432033be61ca5a592f6d9760b5ebb0 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697) 
   * 72ea77955da505b679945dc92ea0dd2d597bcedf Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098) 
   
   <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 removed a comment on pull request #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100",
       "triggerID" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129",
       "triggerID" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4133",
       "triggerID" : "990219827",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 790d2ba4b72e6174d90fb0f7fb15abf72f173181 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129) Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4133) 
   
   <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] yihua commented on pull request #4020: [WIP][HUDI-1180] Upgrade HBase to 2.4.9

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


   I'm closing this in favor of #5004 which has more changes and deviates from this one which has conflicts with master.


-- 
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 removed a comment on pull request #4020: [WIP][HUDI-1180] Upgrade HBase to 2.4.9

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100",
       "triggerID" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129",
       "triggerID" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4133",
       "triggerID" : "990219827",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4874",
       "triggerID" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * b8a7bfaa1a64c979809f656503eb44c9e173a450 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4874) 
   
   <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 removed a comment on pull request #4020: [WIP][HUDI-1180] Upgrade HBase to 2.4.9

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100",
       "triggerID" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129",
       "triggerID" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4133",
       "triggerID" : "990219827",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4874",
       "triggerID" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c904e8f523b440a6b05ff089241b633f98f965fa",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6105",
       "triggerID" : "c904e8f523b440a6b05ff089241b633f98f965fa",
       "triggerType" : "PUSH"
     }, {
       "hash" : "aaaa830c3628423ff7d308016fa2ace12eac9298",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "aaaa830c3628423ff7d308016fa2ace12eac9298",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * c904e8f523b440a6b05ff089241b633f98f965fa Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6105) 
   * aaaa830c3628423ff7d308016fa2ace12eac9298 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 #4020: [WIP][HUDI-2783] Upgrade HBase

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 9dc39a823815dce3891c369489ccb68f2948cdc8 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465) 
   * 3b8266b0703c87eeb66f899b6c9f34c25f5b251b 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 removed a comment on pull request #4020: [WIP][HUDI-2783] Upgrade HBase

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689) 
   * 548c193ffe432033be61ca5a592f6d9760b5ebb0 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 #4020: [WIP][HUDI-2783] Upgrade HBase

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 6e7f2040e65877a742de84f4dac619d1294cb49a 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 #4020: [WIP][HUDI-2783] Upgrade HBase

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 6e7f2040e65877a742de84f4dac619d1294cb49a Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440) 
   * 9dc39a823815dce3891c369489ccb68f2948cdc8 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465) 
   
   <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 #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100",
       "triggerID" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129",
       "triggerID" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 790d2ba4b72e6174d90fb0f7fb15abf72f173181 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129) 
   
   <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 #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100",
       "triggerID" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129",
       "triggerID" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4133",
       "triggerID" : "990219827",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 790d2ba4b72e6174d90fb0f7fb15abf72f173181 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129) Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4133) 
   
   <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 #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 548c193ffe432033be61ca5a592f6d9760b5ebb0 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697) 
   * 72ea77955da505b679945dc92ea0dd2d597bcedf 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 removed a comment on pull request #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100",
       "triggerID" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 72ea77955da505b679945dc92ea0dd2d597bcedf Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098) 
   * a23ba86033f3215c9f57118742189ae844c6c850 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100) 
   
   <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 removed a comment on pull request #4020: [WIP][HUDI-2783] Upgrade HBase

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 6e7f2040e65877a742de84f4dac619d1294cb49a 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 removed a comment on pull request #4020: [WIP][HUDI-2783] Upgrade HBase

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 6e7f2040e65877a742de84f4dac619d1294cb49a Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440) 
   
   <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 removed a comment on pull request #4020: [WIP][HUDI-2783] Upgrade HBase

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 6e7f2040e65877a742de84f4dac619d1294cb49a Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440) 
   * 9dc39a823815dce3891c369489ccb68f2948cdc8 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 #4020: [WIP][HUDI-2783] Upgrade HBase

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 3b8266b0703c87eeb66f899b6c9f34c25f5b251b Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524) 
   * ca86e9dd56ab5b804d3cfca17690423ed49341c1 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 removed a comment on pull request #4020: [WIP][HUDI-2783] Upgrade HBase

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 3b8266b0703c87eeb66f899b6c9f34c25f5b251b Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524) 
   
   <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 #4020: [WIP][HUDI-2783] Upgrade HBase

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * ca86e9dd56ab5b804d3cfca17690423ed49341c1 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683) 
   * 7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689) 
   
   <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 #4020: [WIP][HUDI-2783] Upgrade HBase

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689) 
   * 548c193ffe432033be61ca5a592f6d9760b5ebb0 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 #4020: [WIP][HUDI-1180] Upgrade HBase to 2.4.9

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100",
       "triggerID" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129",
       "triggerID" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4133",
       "triggerID" : "990219827",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4874",
       "triggerID" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c904e8f523b440a6b05ff089241b633f98f965fa",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6105",
       "triggerID" : "c904e8f523b440a6b05ff089241b633f98f965fa",
       "triggerType" : "PUSH"
     }, {
       "hash" : "aaaa830c3628423ff7d308016fa2ace12eac9298",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "aaaa830c3628423ff7d308016fa2ace12eac9298",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * b8a7bfaa1a64c979809f656503eb44c9e173a450 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4874) 
   * c904e8f523b440a6b05ff089241b633f98f965fa Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6105) 
   * aaaa830c3628423ff7d308016fa2ace12eac9298 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 #4020: [WIP][HUDI-1180] Upgrade HBase to 2.4.9

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100",
       "triggerID" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129",
       "triggerID" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4133",
       "triggerID" : "990219827",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4874",
       "triggerID" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c904e8f523b440a6b05ff089241b633f98f965fa",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6105",
       "triggerID" : "c904e8f523b440a6b05ff089241b633f98f965fa",
       "triggerType" : "PUSH"
     }, {
       "hash" : "aaaa830c3628423ff7d308016fa2ace12eac9298",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6106",
       "triggerID" : "aaaa830c3628423ff7d308016fa2ace12eac9298",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * aaaa830c3628423ff7d308016fa2ace12eac9298 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6106) 
   
   <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 #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100",
       "triggerID" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129",
       "triggerID" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4133",
       "triggerID" : "990219827",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4874",
       "triggerID" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * b8a7bfaa1a64c979809f656503eb44c9e173a450 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4874) 
   
   <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 pull request #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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


   @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 change in pull request #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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



##########
File path: packaging/hudi-hadoop-mr-bundle/pom.xml
##########
@@ -202,5 +216,35 @@
         </exclusion>
       </exclusions>
     </dependency>
+    <dependency>
+      <groupId>org.apache.hbase</groupId>
+      <artifactId>hbase-client</artifactId>
+      <version>${hbase.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hbase</groupId>
+      <artifactId>hbase-protocol-shaded</artifactId>
+      <version>${hbase.version}</version>

Review comment:
       Shouldn't this be `hbase.shaded.version`




-- 
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 #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100",
       "triggerID" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129",
       "triggerID" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * a23ba86033f3215c9f57118742189ae844c6c850 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100) 
   * 790d2ba4b72e6174d90fb0f7fb15abf72f173181 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129) 
   
   <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] yihua commented on pull request #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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


   I'm going to take over this PR and get it ready for review.


-- 
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 removed a comment on pull request #4020: [WIP][HUDI-1180] Upgrade HBase to 2.4.9

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100",
       "triggerID" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129",
       "triggerID" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4133",
       "triggerID" : "990219827",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4874",
       "triggerID" : "b8a7bfaa1a64c979809f656503eb44c9e173a450",
       "triggerType" : "PUSH"
     }, {
       "hash" : "c904e8f523b440a6b05ff089241b633f98f965fa",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6105",
       "triggerID" : "c904e8f523b440a6b05ff089241b633f98f965fa",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * b8a7bfaa1a64c979809f656503eb44c9e173a450 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4874) 
   * c904e8f523b440a6b05ff089241b633f98f965fa Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=6105) 
   
   <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 #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     }, {
       "hash" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4100",
       "triggerID" : "a23ba86033f3215c9f57118742189ae844c6c850",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129",
       "triggerID" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "triggerType" : "PUSH"
     }, {
       "hash" : "790d2ba4b72e6174d90fb0f7fb15abf72f173181",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4133",
       "triggerID" : "990219827",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * 790d2ba4b72e6174d90fb0f7fb15abf72f173181 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4129) Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4133) 
   
   <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 removed a comment on pull request #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 548c193ffe432033be61ca5a592f6d9760b5ebb0 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697) 
   * 72ea77955da505b679945dc92ea0dd2d597bcedf 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 #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     }, {
       "hash" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098",
       "triggerID" : "72ea77955da505b679945dc92ea0dd2d597bcedf",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 72ea77955da505b679945dc92ea0dd2d597bcedf Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=4098) 
   
   <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 removed a comment on pull request #4020: [WIP][HUDI-2783] Upgrade HBase

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 9dc39a823815dce3891c369489ccb68f2948cdc8 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465) 
   * 3b8266b0703c87eeb66f899b6c9f34c25f5b251b Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524) 
   
   <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 #4020: [WIP][HUDI-2783] Upgrade HBase

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 3b8266b0703c87eeb66f899b6c9f34c25f5b251b Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524) 
   
   <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 #4020: [WIP][HUDI-2783] Upgrade HBase

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 6e7f2040e65877a742de84f4dac619d1294cb49a Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440) 
   
   <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] prashantwason commented on a change in pull request #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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



##########
File path: hudi-common/src/main/java/org/apache/hudi/io/storage/HoodieHFileReader.java
##########
@@ -72,56 +75,58 @@
   public HoodieHFileReader(Configuration configuration, Path path, CacheConfig cacheConfig) throws IOException {
     this.conf = configuration;
     this.path = path;
-    this.reader = HFile.createReader(FSUtils.getFs(path.toString(), configuration), path, cacheConfig, conf);
+    this.reader = HFile.createReader(getFs(path.toString(), configuration), path, cacheConfig, true, conf);
   }
 
   public HoodieHFileReader(Configuration configuration, Path path, CacheConfig cacheConfig, FileSystem inlineFs) throws IOException {
     this.conf = configuration;
     this.path = path;
     this.fsDataInputStream = inlineFs.open(path);
-    this.reader = HFile.createReader(inlineFs, path, cacheConfig, configuration);
+    this.reader = HFile.createReader(inlineFs, path, cacheConfig, true, configuration);
   }
 
   public HoodieHFileReader(byte[] content) throws IOException {
     Configuration conf = new Configuration();
     Path path = new Path("hoodie");
     SeekableByteArrayInputStream bis = new SeekableByteArrayInputStream(content);
     FSDataInputStream fsdis = new FSDataInputStream(bis);
-    this.reader = HFile.createReader(FSUtils.getFs("hoodie", conf), path, new FSDataInputStreamWrapper(fsdis),
-        content.length, new CacheConfig(conf), conf);
+    FSDataInputStreamWrapper stream = new FSDataInputStreamWrapper(fsdis);
+    ReaderContext context = new ReaderContextBuilder()
+            .withFilePath(path)
+            .withInputStreamWrapper(stream)
+            .withFileSize(getFs("hoodie", conf).getFileStatus(path).getLen())

Review comment:
       this is a fake path so getFileStatus() will fail. file size could be content.length?

##########
File path: hudi-common/src/main/java/org/apache/hudi/io/storage/HoodieHFileReader.java
##########
@@ -72,56 +75,58 @@
   public HoodieHFileReader(Configuration configuration, Path path, CacheConfig cacheConfig) throws IOException {
     this.conf = configuration;
     this.path = path;
-    this.reader = HFile.createReader(FSUtils.getFs(path.toString(), configuration), path, cacheConfig, conf);
+    this.reader = HFile.createReader(getFs(path.toString(), configuration), path, cacheConfig, true, conf);
   }
 
   public HoodieHFileReader(Configuration configuration, Path path, CacheConfig cacheConfig, FileSystem inlineFs) throws IOException {
     this.conf = configuration;
     this.path = path;
     this.fsDataInputStream = inlineFs.open(path);
-    this.reader = HFile.createReader(inlineFs, path, cacheConfig, configuration);
+    this.reader = HFile.createReader(inlineFs, path, cacheConfig, true, configuration);
   }
 
   public HoodieHFileReader(byte[] content) throws IOException {
     Configuration conf = new Configuration();
     Path path = new Path("hoodie");
     SeekableByteArrayInputStream bis = new SeekableByteArrayInputStream(content);
     FSDataInputStream fsdis = new FSDataInputStream(bis);
-    this.reader = HFile.createReader(FSUtils.getFs("hoodie", conf), path, new FSDataInputStreamWrapper(fsdis),
-        content.length, new CacheConfig(conf), conf);
+    FSDataInputStreamWrapper stream = new FSDataInputStreamWrapper(fsdis);
+    ReaderContext context = new ReaderContextBuilder()
+            .withFilePath(path)
+            .withInputStreamWrapper(stream)
+            .withFileSize(getFs("hoodie", conf).getFileStatus(path).getLen())
+            .withFileSystem(stream.getHfs())
+            .withPrimaryReplicaReader(true)
+            .withReaderType(ReaderContext.ReaderType.STREAM)
+            .build();
+    HFileInfo fileInfo = new HFileInfo(context, conf);
+    this.reader = HFile.createReader(context, fileInfo, new CacheConfig(conf), conf);
+    fileInfo.initMetaAndIndex(reader);

Review comment:
       What is the use of this explicit call? Is this required or some optimization?




-- 
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 removed a comment on pull request #4020: [WIP][HUDI-2783] Upgrade HBase

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * ca86e9dd56ab5b804d3cfca17690423ed49341c1 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683) 
   * 7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628 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 #4020: [WIP][HUDI-2783] Upgrade HBase

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * ca86e9dd56ab5b804d3cfca17690423ed49341c1 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683) 
   * 7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628 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 #4020: [WIP][HUDI-2783] Upgrade HBase to 2.x

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3440",
       "triggerID" : "6e7f2040e65877a742de84f4dac619d1294cb49a",
       "triggerType" : "PUSH"
     }, {
       "hash" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3465",
       "triggerID" : "9dc39a823815dce3891c369489ccb68f2948cdc8",
       "triggerType" : "PUSH"
     }, {
       "hash" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3524",
       "triggerID" : "3b8266b0703c87eeb66f899b6c9f34c25f5b251b",
       "triggerType" : "PUSH"
     }, {
       "hash" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3683",
       "triggerID" : "ca86e9dd56ab5b804d3cfca17690423ed49341c1",
       "triggerType" : "PUSH"
     }, {
       "hash" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3689",
       "triggerID" : "7c4b6d971fb0c04a54aeed1c46228d9d8d7d9628",
       "triggerType" : "PUSH"
     }, {
       "hash" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697",
       "triggerID" : "548c193ffe432033be61ca5a592f6d9760b5ebb0",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * 548c193ffe432033be61ca5a592f6d9760b5ebb0 Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=3697) 
   
   <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