You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by GitBox <gi...@apache.org> on 2022/03/22 10:52:24 UTC

[GitHub] [hudi] zhangyue19921010 opened a new pull request #5091: [HUDI-3453]Fix HoodieBackedTableMetadata concurrent reading issue

zhangyue19921010 opened a new pull request #5091:
URL: https://github.com/apache/hudi/pull/5091


   https://issues.apache.org/jira/browse/HUDI-3453
   
   ## What is the purpose of the pull request
   
   If there are multi-reader for a specific metadata table file slice, there will be a concurrent read issue. 
   the HFile native reader or LogRecordScanner could be closed by other reader.
   When closed base file reader, it will cause NPE.
   When closed log scanner, it will cause empty result.
   
   This patch fix this issue:
   When reuse is false, there will no shared readers and each reader holds their own reader.
   When reuse is true, there will create and cache shared readers but never close them and cause no damage.
   
   Also add a UT to verify this problem, without this patch, UT will failed and throw:
   ```
   357  [main] WARN  org.apache.hadoop.util.NativeCodeLoader  - Unable to load native-hadoop library for your platform... using builtin-java classes where applicable
   1921 [main] WARN  org.apache.spark.sql.SparkSession$Builder  - Using an existing SparkSession; some configuration may not take effect.
   7398 [pool-21-thread-19] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   7433 [pool-21-thread-98] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   7472 [pool-21-thread-99] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [] : 0
   7514 [pool-21-thread-50] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [] : 0
   7581 [pool-21-thread-27] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [] : 0
   7620 [pool-21-thread-74] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [] : 0
   7655 [pool-21-thread-61] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [] : 0
   7693 [pool-21-thread-29] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   7730 [pool-21-thread-10] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   7765 [pool-21-thread-45] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   7798 [pool-21-thread-100] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   7834 [pool-21-thread-57] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   7871 [pool-21-thread-78] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   7908 [pool-21-thread-63] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   7951 [pool-21-thread-71] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   7983 [pool-21-thread-44] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8013 [pool-21-thread-26] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8040 [pool-21-thread-62] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8071 [pool-21-thread-16] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8101 [pool-21-thread-68] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8133 [pool-21-thread-65] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8161 [pool-21-thread-72] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8189 [pool-21-thread-93] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8218 [pool-21-thread-67] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8261 [pool-21-thread-51] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8320 [pool-21-thread-60] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8385 [pool-21-thread-59] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8417 [pool-21-thread-53] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8447 [pool-21-thread-38] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8479 [pool-21-thread-35] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8513 [pool-21-thread-79] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8549 [pool-21-thread-55] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8581 [pool-21-thread-88] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8612 [pool-21-thread-64] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8642 [pool-21-thread-48] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8671 [pool-21-thread-25] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8671 [pool-21-thread-58] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8671 [pool-21-thread-8] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8671 [pool-21-thread-15] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8671 [pool-21-thread-11] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8671 [pool-21-thread-66] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8671 [pool-21-thread-69] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8672 [pool-21-thread-5] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8672 [pool-21-thread-49] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8671 [pool-21-thread-24] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8671 [pool-21-thread-13] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8672 [pool-21-thread-46] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8672 [pool-21-thread-47] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8672 [pool-21-thread-43] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8672 [pool-21-thread-30] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8672 [pool-21-thread-34] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8672 [pool-21-thread-20] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8672 [pool-21-thread-37] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8672 [pool-21-thread-40] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8672 [pool-21-thread-18] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8672 [pool-21-thread-4] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8672 [pool-21-thread-83] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8672 [pool-21-thread-3] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8672 [pool-21-thread-94] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8672 [pool-21-thread-42] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8673 [pool-21-thread-80] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8673 [pool-21-thread-7] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8673 [pool-21-thread-87] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8673 [pool-21-thread-23] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8672 [pool-21-thread-77] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8673 [pool-21-thread-9] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8673 [pool-21-thread-56] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8673 [pool-21-thread-76] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8672 [pool-21-thread-97] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8673 [pool-21-thread-84] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8672 [pool-21-thread-33] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8672 [pool-21-thread-21] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8672 [pool-21-thread-95] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8673 [pool-21-thread-52] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8673 [pool-21-thread-32] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8673 [pool-21-thread-54] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8673 [pool-21-thread-92] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8673 [pool-21-thread-96] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8673 [pool-21-thread-70] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8673 [pool-21-thread-36] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8673 [pool-21-thread-91] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8673 [pool-21-thread-73] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8673 [pool-21-thread-81] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8673 [pool-21-thread-17] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8673 [pool-21-thread-89] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8673 [pool-21-thread-28] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8674 [pool-21-thread-90] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8674 [pool-21-thread-82] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8674 [pool-21-thread-22] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8673 [pool-21-thread-6] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8674 [pool-21-thread-2] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8674 [pool-21-thread-85] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8674 [pool-21-thread-1] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8674 [pool-21-thread-31] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8674 [pool-21-thread-75] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8674 [pool-21-thread-39] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8674 [pool-21-thread-14] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8674 [pool-21-thread-41] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8673 [pool-21-thread-86] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8674 [pool-21-thread-12] WARN  org.apache.hudi.client.functional.TestHoodieBackedTableMetadata  - [FileStatus{path=/var/folders/61/77xdhf3x0x9g3t_vdd1c9_nwr4wznp/T/junit8988369679201760174/dataset/p1/f848917c-735a-4f14-a20e-bbcaa66cdf05_1-0-1_000001.parquet; isDirectory=false; length=308; replication=0; blocksize=33554432; modification_time=0; access_time=0; owner=; group=; permission=rw-rw-rw-; isSymlink=false}] : 1
   8748 [main] WARN  org.apache.hudi.testutils.HoodieClientTestHarness  - Closing file-system instance used in previous test-run
   
   
   org.opentest4j.AssertionFailedError: 
   Expected :95
   Actual   :100
   <Click to see difference>
   
   
   	at org.junit.jupiter.api.AssertionUtils.fail(AssertionUtils.java:55)
   	at org.junit.jupiter.api.AssertionUtils.failNotEqual(AssertionUtils.java:62)
   	at org.junit.jupiter.api.AssertEquals.assertEquals(AssertEquals.java:150)
   	at org.junit.jupiter.api.AssertEquals.assertEquals(AssertEquals.java:145)
   	at org.junit.jupiter.api.Assertions.assertEquals(Assertions.java:510)
   	at org.apache.hudi.client.functional.TestHoodieBackedTableMetadata.testMultiReaderForHoodieBackedTableMetadata(TestHoodieBackedTableMetadata.java:154)
   	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
   	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
   	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
   	at java.lang.reflect.Method.invoke(Method.java:498)
   	at org.junit.platform.commons.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:688)
   	at org.junit.jupiter.engine.execution.MethodInvocation.proceed(MethodInvocation.java:60)
   	at org.junit.jupiter.engine.execution.InvocationInterceptorChain$ValidatingInvocation.proceed(InvocationInterceptorChain.java:131)
   	at org.junit.jupiter.engine.extension.TimeoutExtension.intercept(TimeoutExtension.java:149)
   	at org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestableMethod(TimeoutExtension.java:140)
   	at org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestMethod(TimeoutExtension.java:84)
   	at org.junit.jupiter.engine.execution.ExecutableInvoker$ReflectiveInterceptorCall.lambda$ofVoidMethod$0(ExecutableInvoker.java:115)
   	at org.junit.jupiter.engine.execution.ExecutableInvoker.lambda$invoke$0(ExecutableInvoker.java:105)
   	at org.junit.jupiter.engine.execution.InvocationInterceptorChain$InterceptedInvocation.proceed(InvocationInterceptorChain.java:106)
   	at org.junit.jupiter.engine.execution.InvocationInterceptorChain.proceed(InvocationInterceptorChain.java:64)
   	at org.junit.jupiter.engine.execution.InvocationInterceptorChain.chainAndInvoke(InvocationInterceptorChain.java:45)
   	at org.junit.jupiter.engine.execution.InvocationInterceptorChain.invoke(InvocationInterceptorChain.java:37)
   	at org.junit.jupiter.engine.execution.ExecutableInvoker.invoke(ExecutableInvoker.java:104)
   	at org.junit.jupiter.engine.execution.ExecutableInvoker.invoke(ExecutableInvoker.java:98)
   	at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeTestMethod$6(TestMethodTestDescriptor.java:212)
   	at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
   	at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeTestMethod(TestMethodTestDescriptor.java:208)
   	at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:137)
   	at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:71)
   	at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$5(NodeTestTask.java:139)
   	at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
   	at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$7(NodeTestTask.java:129)
   	at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
   	at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:127)
   	at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
   	at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:126)
   	at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:84)
   	at java.util.ArrayList.forEach(ArrayList.java:1257)
   	at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:38)
   	at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$5(NodeTestTask.java:143)
   	at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
   	at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$7(NodeTestTask.java:129)
   	at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
   	at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:127)
   	at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
   	at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:126)
   	at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:84)
   	at java.util.ArrayList.forEach(ArrayList.java:1257)
   	at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:38)
   	at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$5(NodeTestTask.java:143)
   	at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
   	at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$7(NodeTestTask.java:129)
   	at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
   	at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:127)
   	at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
   	at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:126)
   	at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:84)
   	at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.submit(SameThreadHierarchicalTestExecutorService.java:32)
   	at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute(HierarchicalTestExecutor.java:57)
   	at org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(HierarchicalTestEngine.java:51)
   	at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:107)
   	at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:87)
   	at org.junit.platform.launcher.core.EngineExecutionOrchestrator.lambda$execute$0(EngineExecutionOrchestrator.java:53)
   	at org.junit.platform.launcher.core.EngineExecutionOrchestrator.withInterceptedStreams(EngineExecutionOrchestrator.java:66)
   	at org.junit.platform.launcher.core.EngineExecutionOrchestrator.execute(EngineExecutionOrchestrator.java:51)
   	at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:87)
   	at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:66)
   	at com.intellij.junit5.JUnit5IdeaTestRunner.startRunnerWithArgs(JUnit5IdeaTestRunner.java:69)
   	at com.intellij.rt.execution.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:47)
   	at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:242)
   	at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:70)
   ``` 
   
   *(For example: This pull request adds quick-start document.)*
   
   ## Brief change log
   
   *(for example:)*
     - *Modify AnnotationLocation checkstyle rule in checkstyle.xml*
   
   ## Verify this pull request
   
   *(Please pick either of the following options)*
   
   This pull request is a trivial rework / code cleanup without any test coverage.
   
   *(or)*
   
   This pull request is already covered by existing tests, such as *(please describe tests)*.
   
   (or)
   
   This change added tests and can be verified as follows:
   
   *(example:)*
   
     - *Added integration tests for end-to-end.*
     - *Added HoodieClientWriteTest to verify the change.*
     - *Manually verified the change by running a job locally.*
   
   ## Committer checklist
   
    - [ ] Has a corresponding JIRA in PR title & commit
    
    - [ ] Commit message is descriptive of the change
    
    - [ ] CI is green
   
    - [ ] Necessary doc changes done or have another open PR
          
    - [ ] For large changes, please consider breaking it into sub-tasks under an umbrella JIRA.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

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



[GitHub] [hudi] hudi-bot removed a comment on pull request #5091: [HUDI-3453]Fix HoodieBackedTableMetadata concurrent reading issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * f65da7c44d9be5afb820f7f2ac8d6e549c0c433f Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182) Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180) 
   
   <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 #5091: [HUDI-3453] Fix HoodieBackedTableMetadata concurrent reading issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7185",
       "triggerID" : "1075120254",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "dbea31fc5ab396763147ba8dcae20a2c69a6f7ab",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7207",
       "triggerID" : "dbea31fc5ab396763147ba8dcae20a2c69a6f7ab",
       "triggerType" : "PUSH"
     }, {
       "hash" : "da805252df5b31da1d9638f36b9d455ba95fc4a2",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "da805252df5b31da1d9638f36b9d455ba95fc4a2",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * dbea31fc5ab396763147ba8dcae20a2c69a6f7ab Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7207) 
   * da805252df5b31da1d9638f36b9d455ba95fc4a2 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 #5091: [HUDI-3453]Fix HoodieBackedTableMetadata concurrent reading issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7185",
       "triggerID" : "1075120254",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * f65da7c44d9be5afb820f7f2ac8d6e549c0c433f Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182) Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180) Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7185) 
   
   <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 #5091: [HUDI-3453] Fix HoodieBackedTableMetadata concurrent reading issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7185",
       "triggerID" : "1075120254",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "dbea31fc5ab396763147ba8dcae20a2c69a6f7ab",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7207",
       "triggerID" : "dbea31fc5ab396763147ba8dcae20a2c69a6f7ab",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f65da7c44d9be5afb820f7f2ac8d6e549c0c433f Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182) Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180) Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7185) 
   * dbea31fc5ab396763147ba8dcae20a2c69a6f7ab Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7207) 
   
   <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 #5091: [HUDI-3453] Fix HoodieBackedTableMetadata concurrent reading issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7185",
       "triggerID" : "1075120254",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "dbea31fc5ab396763147ba8dcae20a2c69a6f7ab",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7207",
       "triggerID" : "dbea31fc5ab396763147ba8dcae20a2c69a6f7ab",
       "triggerType" : "PUSH"
     }, {
       "hash" : "da805252df5b31da1d9638f36b9d455ba95fc4a2",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7328",
       "triggerID" : "da805252df5b31da1d9638f36b9d455ba95fc4a2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "da805252df5b31da1d9638f36b9d455ba95fc4a2",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7353",
       "triggerID" : "1078689853",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * da805252df5b31da1d9638f36b9d455ba95fc4a2 Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7328) Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7353) 
   
   <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 #5091: [HUDI-3453]Fix HoodieBackedTableMetadata concurrent reading issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * f65da7c44d9be5afb820f7f2ac8d6e549c0c433f Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182) Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180) 
   
   <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 #5091: [HUDI-3453] Fix HoodieBackedTableMetadata concurrent reading issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7185",
       "triggerID" : "1075120254",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "dbea31fc5ab396763147ba8dcae20a2c69a6f7ab",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7207",
       "triggerID" : "dbea31fc5ab396763147ba8dcae20a2c69a6f7ab",
       "triggerType" : "PUSH"
     }, {
       "hash" : "da805252df5b31da1d9638f36b9d455ba95fc4a2",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "da805252df5b31da1d9638f36b9d455ba95fc4a2",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * dbea31fc5ab396763147ba8dcae20a2c69a6f7ab Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7207) 
   * da805252df5b31da1d9638f36b9d455ba95fc4a2 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 #5091: [HUDI-3453]Fix HoodieBackedTableMetadata concurrent reading issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f65da7c44d9be5afb820f7f2ac8d6e549c0c433f 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 #5091: [HUDI-3453] Fix HoodieBackedTableMetadata concurrent reading issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7185",
       "triggerID" : "1075120254",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "dbea31fc5ab396763147ba8dcae20a2c69a6f7ab",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7207",
       "triggerID" : "dbea31fc5ab396763147ba8dcae20a2c69a6f7ab",
       "triggerType" : "PUSH"
     }, {
       "hash" : "da805252df5b31da1d9638f36b9d455ba95fc4a2",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7328",
       "triggerID" : "da805252df5b31da1d9638f36b9d455ba95fc4a2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "da805252df5b31da1d9638f36b9d455ba95fc4a2",
       "status" : "SUCCESS",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7353",
       "triggerID" : "1078689853",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * da805252df5b31da1d9638f36b9d455ba95fc4a2 Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7328) Azure: [SUCCESS](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7353) 
   
   <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] zhangyue19921010 commented on pull request #5091: [HUDI-3453] Fix HoodieBackedTableMetadata concurrent reading issue

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


   @hudi-bot run azure


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

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



[GitHub] [hudi] hudi-bot removed a comment on pull request #5091: [HUDI-3453]Fix HoodieBackedTableMetadata concurrent reading issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7185",
       "triggerID" : "1075120254",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * f65da7c44d9be5afb820f7f2ac8d6e549c0c433f Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182) Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180) Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7185) 
   
   <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 #5091: [HUDI-3453]Fix HoodieBackedTableMetadata concurrent reading issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * f65da7c44d9be5afb820f7f2ac8d6e549c0c433f Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182) Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180) 
   
   <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 #5091: [HUDI-3453]Fix HoodieBackedTableMetadata concurrent reading issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f65da7c44d9be5afb820f7f2ac8d6e549c0c433f 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 #5091: [HUDI-3453]Fix HoodieBackedTableMetadata concurrent reading issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f65da7c44d9be5afb820f7f2ac8d6e549c0c433f Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180) 
   
   <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] zhangyue19921010 removed a comment on pull request #5091: [HUDI-3453]Fix HoodieBackedTableMetadata concurrent reading issue

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


   @hudi-bot run azure


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

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



[GitHub] [hudi] hudi-bot commented on pull request #5091: [HUDI-3453] Fix HoodieBackedTableMetadata concurrent reading issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7185",
       "triggerID" : "1075120254",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "dbea31fc5ab396763147ba8dcae20a2c69a6f7ab",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7207",
       "triggerID" : "dbea31fc5ab396763147ba8dcae20a2c69a6f7ab",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f65da7c44d9be5afb820f7f2ac8d6e549c0c433f Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182) Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180) Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7185) 
   * dbea31fc5ab396763147ba8dcae20a2c69a6f7ab Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7207) 
   
   <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 #5091: [HUDI-3453] Fix HoodieBackedTableMetadata concurrent reading issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7185",
       "triggerID" : "1075120254",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "dbea31fc5ab396763147ba8dcae20a2c69a6f7ab",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7207",
       "triggerID" : "dbea31fc5ab396763147ba8dcae20a2c69a6f7ab",
       "triggerType" : "PUSH"
     }, {
       "hash" : "da805252df5b31da1d9638f36b9d455ba95fc4a2",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7328",
       "triggerID" : "da805252df5b31da1d9638f36b9d455ba95fc4a2",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * dbea31fc5ab396763147ba8dcae20a2c69a6f7ab Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7207) 
   * da805252df5b31da1d9638f36b9d455ba95fc4a2 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7328) 
   
   <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 #5091: [HUDI-3453] Fix HoodieBackedTableMetadata concurrent reading issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7185",
       "triggerID" : "1075120254",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "dbea31fc5ab396763147ba8dcae20a2c69a6f7ab",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7207",
       "triggerID" : "dbea31fc5ab396763147ba8dcae20a2c69a6f7ab",
       "triggerType" : "PUSH"
     }, {
       "hash" : "da805252df5b31da1d9638f36b9d455ba95fc4a2",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7328",
       "triggerID" : "da805252df5b31da1d9638f36b9d455ba95fc4a2",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * dbea31fc5ab396763147ba8dcae20a2c69a6f7ab Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7207) 
   * da805252df5b31da1d9638f36b9d455ba95fc4a2 Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7328) 
   
   <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 #5091: [HUDI-3453] Fix HoodieBackedTableMetadata concurrent reading issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7185",
       "triggerID" : "1075120254",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "dbea31fc5ab396763147ba8dcae20a2c69a6f7ab",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7207",
       "triggerID" : "dbea31fc5ab396763147ba8dcae20a2c69a6f7ab",
       "triggerType" : "PUSH"
     }, {
       "hash" : "da805252df5b31da1d9638f36b9d455ba95fc4a2",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7328",
       "triggerID" : "da805252df5b31da1d9638f36b9d455ba95fc4a2",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * da805252df5b31da1d9638f36b9d455ba95fc4a2 Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7328) 
   
   <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 #5091: [HUDI-3453]Fix HoodieBackedTableMetadata concurrent reading issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * f65da7c44d9be5afb820f7f2ac8d6e549c0c433f Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182) Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180) 
   
   <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 #5091: [HUDI-3453] Fix HoodieBackedTableMetadata concurrent reading issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7185",
       "triggerID" : "1075120254",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "dbea31fc5ab396763147ba8dcae20a2c69a6f7ab",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7207",
       "triggerID" : "dbea31fc5ab396763147ba8dcae20a2c69a6f7ab",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * dbea31fc5ab396763147ba8dcae20a2c69a6f7ab Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7207) 
   
   <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 #5091: [HUDI-3453] Fix HoodieBackedTableMetadata concurrent reading issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7185",
       "triggerID" : "1075120254",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "dbea31fc5ab396763147ba8dcae20a2c69a6f7ab",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "dbea31fc5ab396763147ba8dcae20a2c69a6f7ab",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f65da7c44d9be5afb820f7f2ac8d6e549c0c433f Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182) Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180) Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7185) 
   * dbea31fc5ab396763147ba8dcae20a2c69a6f7ab 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 #5091: [HUDI-3453]Fix HoodieBackedTableMetadata concurrent reading issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * f65da7c44d9be5afb820f7f2ac8d6e549c0c433f Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180) Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182) 
   
   <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 #5091: [HUDI-3453]Fix HoodieBackedTableMetadata concurrent reading issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7185",
       "triggerID" : "1075120254",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * f65da7c44d9be5afb820f7f2ac8d6e549c0c433f Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182) Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180) Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7185) 
   
   <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 #5091: [HUDI-3453]Fix HoodieBackedTableMetadata concurrent reading issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f65da7c44d9be5afb820f7f2ac8d6e549c0c433f Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180) 
   
   <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 #5091: [HUDI-3453] Fix HoodieBackedTableMetadata concurrent reading issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7185",
       "triggerID" : "1075120254",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * f65da7c44d9be5afb820f7f2ac8d6e549c0c433f Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182) Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180) Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7185) 
   
   <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] zhangyue19921010 commented on pull request #5091: [HUDI-3453]Fix HoodieBackedTableMetadata concurrent reading issue

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


   @hudi-bot run azure


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

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



[GitHub] [hudi] hudi-bot removed a comment on pull request #5091: [HUDI-3453] Fix HoodieBackedTableMetadata concurrent reading issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7185",
       "triggerID" : "1075120254",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "dbea31fc5ab396763147ba8dcae20a2c69a6f7ab",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7207",
       "triggerID" : "dbea31fc5ab396763147ba8dcae20a2c69a6f7ab",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * dbea31fc5ab396763147ba8dcae20a2c69a6f7ab Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7207) 
   
   <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 #5091: [HUDI-3453] Fix HoodieBackedTableMetadata concurrent reading issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7185",
       "triggerID" : "1075120254",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "dbea31fc5ab396763147ba8dcae20a2c69a6f7ab",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7207",
       "triggerID" : "dbea31fc5ab396763147ba8dcae20a2c69a6f7ab",
       "triggerType" : "PUSH"
     }, {
       "hash" : "da805252df5b31da1d9638f36b9d455ba95fc4a2",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7328",
       "triggerID" : "da805252df5b31da1d9638f36b9d455ba95fc4a2",
       "triggerType" : "PUSH"
     }, {
       "hash" : "da805252df5b31da1d9638f36b9d455ba95fc4a2",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7353",
       "triggerID" : "1078689853",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * da805252df5b31da1d9638f36b9d455ba95fc4a2 Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7328) Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7353) 
   
   <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 #5091: [HUDI-3453] Fix HoodieBackedTableMetadata concurrent reading issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "FAILURE",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7185",
       "triggerID" : "1075120254",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "dbea31fc5ab396763147ba8dcae20a2c69a6f7ab",
       "status" : "UNKNOWN",
       "url" : "TBD",
       "triggerID" : "dbea31fc5ab396763147ba8dcae20a2c69a6f7ab",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * f65da7c44d9be5afb820f7f2ac8d6e549c0c433f Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182) Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180) Azure: [FAILURE](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7185) 
   * dbea31fc5ab396763147ba8dcae20a2c69a6f7ab 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] zhangyue19921010 commented on a change in pull request #5091: [HUDI-3453]Fix HoodieBackedTableMetadata concurrent reading issue

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



##########
File path: hudi-client/hudi-spark-client/src/test/java/org/apache/hudi/client/functional/TestHoodieBackedTableMetadata.java
##########
@@ -94,6 +102,53 @@ public void testTableOperations() throws Exception {
     verifyBaseMetadataTable();
   }
 
+  @Test
+  public void testMultiReaderForHoodieBackedTableMetadata() throws Exception {
+    final int taskNumber = 100;
+    HoodieTableType tableType = HoodieTableType.COPY_ON_WRITE;
+    init(tableType);
+    testTable.doWriteOperation("000001", INSERT, emptyList(), asList("p1"), 1);
+    HoodieBackedTableMetadata tableMetadata = new HoodieBackedTableMetadata(context, writeConfig.getMetadataConfig(), writeConfig.getBasePath(), writeConfig.getSpillableMapBasePath(), false);
+    assertTrue(tableMetadata.enabled());
+    List<String> metadataPartitions = tableMetadata.getAllPartitionPaths();
+    String partition = metadataPartitions.get(0);
+    String finalPartition = basePath + "/" + partition;
+    ArrayList<String> duplicatedPartitions = new ArrayList<>(taskNumber);
+    for (int i = 0; i < taskNumber; i++) {
+      duplicatedPartitions.add(finalPartition);
+    }
+    ExecutorService executors = Executors.newFixedThreadPool(taskNumber);
+    AtomicBoolean flag = new AtomicBoolean(false);
+    AtomicInteger count = new AtomicInteger(0);
+    AtomicInteger filesNumber = new AtomicInteger(0);
+
+    for (String part : duplicatedPartitions) {
+      executors.submit(new Runnable() {
+        @Override
+        public void run() {
+          try {
+            count.incrementAndGet();
+            while (true) {
+              if (count.get() == taskNumber) {
+                break;
+              }
+            }
+            FileStatus[] files = tableMetadata.getAllFilesInPartition(new Path(part));
+            filesNumber.addAndGet(files.length);
+            LOG.warn(Arrays.toString(files) + " : " + files.length);

Review comment:
       We need to remove this line eventually, just make this ut more easier to understand for now :)




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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 #5091: [HUDI-3453]Fix HoodieBackedTableMetadata concurrent reading issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "PENDING",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     } ]
   }-->
   ## CI report:
   
   * f65da7c44d9be5afb820f7f2ac8d6e549c0c433f Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180) Azure: [PENDING](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182) 
   
   <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] zhangyue19921010 commented on pull request #5091: [HUDI-3453]Fix HoodieBackedTableMetadata concurrent reading issue

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


   @hudi-bot run azure


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@hudi.apache.org

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



[GitHub] [hudi] hudi-bot commented on pull request #5091: [HUDI-3453] Fix HoodieBackedTableMetadata concurrent reading issue

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


   <!--
   Meta data
   {
     "version" : 1,
     "metaDataEntries" : [ {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "triggerType" : "PUSH"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7182",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7180",
       "triggerID" : "1075043569",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "f65da7c44d9be5afb820f7f2ac8d6e549c0c433f",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7185",
       "triggerID" : "1075120254",
       "triggerType" : "MANUAL"
     }, {
       "hash" : "dbea31fc5ab396763147ba8dcae20a2c69a6f7ab",
       "status" : "DELETED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7207",
       "triggerID" : "dbea31fc5ab396763147ba8dcae20a2c69a6f7ab",
       "triggerType" : "PUSH"
     }, {
       "hash" : "da805252df5b31da1d9638f36b9d455ba95fc4a2",
       "status" : "CANCELED",
       "url" : "https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7328",
       "triggerID" : "da805252df5b31da1d9638f36b9d455ba95fc4a2",
       "triggerType" : "PUSH"
     } ]
   }-->
   ## CI report:
   
   * da805252df5b31da1d9638f36b9d455ba95fc4a2 Azure: [CANCELED](https://dev.azure.com/apache-hudi-ci-org/785b6ef4-2f42-4a89-8f0e-5f0d7039a0cc/_build/results?buildId=7328) 
   
   <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