zhangyue19921010 commented on pull request #4810: URL: https://github.com/apache/hudi/pull/4810#issuecomment-1038795174
Here is the test table in my local env ``` . ├── .hoodie │ ├── .aux │ │ └── .bootstrap │ │ ├── .fileids │ │ └── .partitions │ ├── .hoodie.properties.crc │ ├── .temp │ ├── 20220214113603048.replacecommit.inflight │ ├── 20220214113603048.replacecommit.requested │ ├── 20220214113742525.commit │ ├── 20220214113742525.commit.requested │ ├── 20220214113742525.inflight │ ├── 20220214113823507.commit │ ├── 20220214113823507.commit.requested │ ├── 20220214113823507.inflight │ ├── 20220214113906724.commit │ ├── 20220214113906724.commit.requested │ ├── 20220214113906724.inflight │ ├── 20220214113951921.commit │ ├── 20220214113951921.commit.requested │ ├── 20220214113951921.inflight │ ├── archived │ │ └── .commits_.archive.1_1-0-1 │ └── hoodie.properties └── 20210623 ├── .hoodie_partition_metadata ├── 08097b95-8096-42bf-81ee-9b9719af72e5-0_1-12-0_20220214113742525.parquet ├── 22c58520-9743-42f7-9bca-cfd1c250af7d-0_1-12-0_20220214113503975.parquet ├── 2fef7543-30bd-495d-ad06-ad9e17d00220-0_0-11-0_20220214113823507.parquet ├── 31ebf933-f1db-4d8e-841c-276faf50e6d9-0_0-11-0_20220214113906724.parquet ├── 383fea19-f097-4682-91c5-7dd43b4116d3-0_1-12-0_20220214113951921.parquet ├── 500c0898-2367-4de1-9d42-d40a41e50dbc-0_0-3-4_20220214113603048.parquet ├── c6e497de-4c2a-4d89-9f7f-fa07bcab3d6c-0_0-11-0_20220214113742525.parquet ├── c9e25ea5-6571-47a1-befe-463a3e383f26-0_0-11-0_20220214113503975.parquet ├── e454fcfd-8176-4d94-bf43-8a8d7c9a15ba-0_0-11-0_20220214113951921.parquet ├── e881db1c-4aba-4627-8adf-b893b1ffc70c-0_1-12-0_20220214113906724.parquet └── f044cb05-e191-4db6-b094-7c86b1ad3df8-0_1-12-0_20220214113823507.parquet ``` Query ``` select count(*) from hudi_test ``` result with `20220214113603048.replacecommit` ==> 5179250 result without `20220214113603048.replacecommit` ==> 6215100 As we can see the result is duplicated. -- 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-unsubscr...@hudi.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org