-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[HUDI-5087] Fix incorrect merging sequence for Column Stats Record in…
… `HoodieMetadataPayload` (#7053) * [HUDI-5087]Fix incorrect maxValue getting from metatable [HUDI-5087]Fix incorrect maxValue getting from metatable * Fixed `HoodieMetadataPayload` merging seq; Added test * Fixing handling of deletes; Added tests for handling deletes; * Added tests for combining partition files-list record Co-authored-by: Alexey Kudinkin <alexey@infinilake.com>
- Loading branch information
1 parent
20e8ec7
commit 7accc47
Showing
2 changed files
with
182 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
153 changes: 153 additions & 0 deletions
153
hudi-common/src/test/java/org/apache/hudi/metadata/TestHoodieMetadataPayload.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,153 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.hudi.metadata; | ||
|
||
import org.apache.avro.generic.IndexedRecord; | ||
import org.apache.hudi.common.model.HoodieColumnRangeMetadata; | ||
import org.apache.hudi.common.model.HoodieRecord; | ||
import org.apache.hudi.common.testutils.HoodieCommonTestHarness; | ||
import org.apache.hudi.common.util.Option; | ||
import org.apache.hudi.common.util.collection.Pair; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import java.io.IOException; | ||
import java.util.Collections; | ||
import java.util.List; | ||
import java.util.Map; | ||
|
||
import static org.apache.hudi.common.util.CollectionUtils.createImmutableMap; | ||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
|
||
public class TestHoodieMetadataPayload extends HoodieCommonTestHarness { | ||
|
||
@Test | ||
public void testFileSystemMetadataPayloadMerging() { | ||
String partitionName = "2022/10/01"; | ||
|
||
Map<String, Long> firstCommitAddedFiles = createImmutableMap( | ||
Pair.of("file1.parquet", 1000L), | ||
Pair.of("file2.parquet", 2000L), | ||
Pair.of("file3.parquet", 3000L) | ||
); | ||
|
||
HoodieRecord<HoodieMetadataPayload> firstPartitionFilesRecord = | ||
HoodieMetadataPayload.createPartitionFilesRecord(partitionName, Option.of(firstCommitAddedFiles), Option.empty()); | ||
|
||
Map<String, Long> secondCommitAddedFiles = createImmutableMap( | ||
// NOTE: This is an append | ||
Pair.of("file3.parquet", 3333L), | ||
Pair.of("file4.parquet", 4000L), | ||
Pair.of("file5.parquet", 5000L) | ||
); | ||
|
||
List<String> secondCommitDeletedFiles = Collections.singletonList("file1.parquet"); | ||
|
||
HoodieRecord<HoodieMetadataPayload> secondPartitionFilesRecord = | ||
HoodieMetadataPayload.createPartitionFilesRecord(partitionName, Option.of(secondCommitAddedFiles), Option.of(secondCommitDeletedFiles)); | ||
|
||
HoodieMetadataPayload combinedPartitionFilesRecordPayload = | ||
secondPartitionFilesRecord.getData().preCombine(firstPartitionFilesRecord.getData()); | ||
|
||
HoodieMetadataPayload expectedCombinedPartitionedFilesRecordPayload = | ||
HoodieMetadataPayload.createPartitionFilesRecord(partitionName, | ||
Option.of( | ||
createImmutableMap( | ||
Pair.of("file2.parquet", 2000L), | ||
Pair.of("file3.parquet", 3333L), | ||
Pair.of("file4.parquet", 4000L), | ||
Pair.of("file5.parquet", 5000L) | ||
) | ||
), | ||
Option.empty() | ||
).getData(); | ||
|
||
assertEquals(expectedCombinedPartitionedFilesRecordPayload, combinedPartitionFilesRecordPayload); | ||
} | ||
|
||
@Test | ||
public void testColumnStatsPayloadMerging() throws IOException { | ||
String partitionPath = "2022/10/01"; | ||
String fileName = "file.parquet"; | ||
String targetColName = "c1"; | ||
|
||
HoodieColumnRangeMetadata<Comparable> c1Metadata = | ||
HoodieColumnRangeMetadata.<Comparable>create(fileName, targetColName, 100, 1000, 5, 1000, 123456, 123456); | ||
|
||
HoodieRecord<HoodieMetadataPayload> columnStatsRecord = | ||
HoodieMetadataPayload.createColumnStatsRecords(partitionPath, Collections.singletonList(c1Metadata), false) | ||
.findFirst().get(); | ||
|
||
//////////////////////////////////////////////////////////////////////// | ||
// Case 1: Combining proper (non-deleted) records | ||
//////////////////////////////////////////////////////////////////////// | ||
|
||
// NOTE: Column Stats record will only be merged in case existing file will be modified, | ||
// which could only happen on storages schemes supporting appends | ||
HoodieColumnRangeMetadata<Comparable> c1AppendedBlockMetadata = | ||
HoodieColumnRangeMetadata.<Comparable>create(fileName, targetColName, 0, 500, 0, 100, 12345, 12345); | ||
|
||
HoodieRecord<HoodieMetadataPayload> updatedColumnStatsRecord = | ||
HoodieMetadataPayload.createColumnStatsRecords(partitionPath, Collections.singletonList(c1AppendedBlockMetadata), false) | ||
.findFirst().get(); | ||
|
||
HoodieMetadataPayload combinedMetadataPayload = | ||
columnStatsRecord.getData().preCombine(updatedColumnStatsRecord.getData()); | ||
|
||
HoodieColumnRangeMetadata<Comparable> expectedColumnRangeMetadata = | ||
HoodieColumnRangeMetadata.<Comparable>create(fileName, targetColName, 0, 1000, 5, 1100, 135801, 135801); | ||
|
||
HoodieRecord<HoodieMetadataPayload> expectedColumnStatsRecord = | ||
HoodieMetadataPayload.createColumnStatsRecords(partitionPath, Collections.singletonList(expectedColumnRangeMetadata), false) | ||
.findFirst().get(); | ||
|
||
// Assert combined payload | ||
assertEquals(combinedMetadataPayload, expectedColumnStatsRecord.getData()); | ||
|
||
Option<IndexedRecord> alternativelyCombinedMetadataPayloadAvro = | ||
columnStatsRecord.getData().combineAndGetUpdateValue(updatedColumnStatsRecord.getData().getInsertValue(null).get(), null); | ||
|
||
// Assert that using legacy API yields the same value | ||
assertEquals(combinedMetadataPayload.getInsertValue(null), alternativelyCombinedMetadataPayloadAvro); | ||
|
||
//////////////////////////////////////////////////////////////////////// | ||
// Case 2: Combining w/ deleted records | ||
//////////////////////////////////////////////////////////////////////// | ||
|
||
HoodieColumnRangeMetadata<Comparable> c1StubbedMetadata = | ||
HoodieColumnRangeMetadata.<Comparable>stub(fileName, targetColName); | ||
|
||
HoodieRecord<HoodieMetadataPayload> deletedColumnStatsRecord = | ||
HoodieMetadataPayload.createColumnStatsRecords(partitionPath, Collections.singletonList(c1StubbedMetadata), true) | ||
.findFirst().get(); | ||
|
||
// NOTE: In this case, deleted (or tombstone) record will be therefore deleting | ||
// previous state of the record | ||
HoodieMetadataPayload deletedCombinedMetadataPayload = | ||
deletedColumnStatsRecord.getData().preCombine(columnStatsRecord.getData()); | ||
|
||
assertEquals(deletedColumnStatsRecord.getData(), deletedCombinedMetadataPayload); | ||
|
||
// NOTE: In this case, proper incoming record will be overwriting previously deleted | ||
// record | ||
HoodieMetadataPayload overwrittenCombinedMetadataPayload = | ||
columnStatsRecord.getData().preCombine(deletedColumnStatsRecord.getData()); | ||
|
||
assertEquals(columnStatsRecord.getData(), overwrittenCombinedMetadataPayload); | ||
} | ||
} |