[HUDI-2752] The MOR DELETE block breaks the event time sequence of CDC (#4880)
This commit is contained in:
@@ -0,0 +1,107 @@
|
||||
/*
|
||||
* 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.common.model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Objects;
|
||||
|
||||
/**
|
||||
* Delete record is a combination of HoodieKey and ordering value.
|
||||
* The record is used for {@link org.apache.hudi.common.table.log.block.HoodieDeleteBlock}
|
||||
* to support per-record deletions. The deletion block is always appended after the data block,
|
||||
* we need to keep the ordering val to combine with the data records when merging, or the data loss
|
||||
* may occur if there are intermediate deletions for the inputs
|
||||
* (a new INSERT comes after a DELETE in one input batch).
|
||||
*/
|
||||
public class DeleteRecord implements Serializable {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The record key and partition path.
|
||||
*/
|
||||
private final HoodieKey hoodieKey;
|
||||
|
||||
/**
|
||||
* For purposes of preCombining.
|
||||
*/
|
||||
private final Comparable<?> orderingVal;
|
||||
|
||||
private DeleteRecord(HoodieKey hoodieKey, Comparable orderingVal) {
|
||||
this.hoodieKey = hoodieKey;
|
||||
this.orderingVal = orderingVal;
|
||||
}
|
||||
|
||||
public static DeleteRecord create(HoodieKey hoodieKey) {
|
||||
return create(hoodieKey, 0);
|
||||
}
|
||||
|
||||
public static DeleteRecord create(String recordKey, String partitionPath) {
|
||||
return create(recordKey, partitionPath, 0);
|
||||
}
|
||||
|
||||
public static DeleteRecord create(String recordKey, String partitionPath, Comparable orderingVal) {
|
||||
return create(new HoodieKey(recordKey, partitionPath), orderingVal);
|
||||
}
|
||||
|
||||
public static DeleteRecord create(HoodieKey hoodieKey, Comparable orderingVal) {
|
||||
return new DeleteRecord(hoodieKey, orderingVal);
|
||||
}
|
||||
|
||||
public String getRecordKey() {
|
||||
return hoodieKey.getRecordKey();
|
||||
}
|
||||
|
||||
public String getPartitionPath() {
|
||||
return hoodieKey.getPartitionPath();
|
||||
}
|
||||
|
||||
public HoodieKey getHoodieKey() {
|
||||
return hoodieKey;
|
||||
}
|
||||
|
||||
public Comparable<?> getOrderingValue() {
|
||||
return orderingVal;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object o) {
|
||||
if (this == o) {
|
||||
return true;
|
||||
}
|
||||
if (!(o instanceof DeleteRecord)) {
|
||||
return false;
|
||||
}
|
||||
DeleteRecord that = (DeleteRecord) o;
|
||||
return this.hoodieKey.equals(that.hoodieKey) && this.orderingVal.equals(that.orderingVal);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return Objects.hash(this.hoodieKey, this.orderingVal);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
final StringBuilder sb = new StringBuilder("DeleteRecord {");
|
||||
sb.append(" key=").append(hoodieKey);
|
||||
sb.append(" orderingVal=").append(this.orderingVal);
|
||||
sb.append('}');
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
@@ -36,17 +36,16 @@ public class HoodieAvroPayload implements HoodieRecordPayload<HoodieAvroPayload>
|
||||
// Store the GenericRecord converted to bytes - 1) Doesn't store schema hence memory efficient 2) Makes the payload
|
||||
// java serializable
|
||||
private final byte[] recordBytes;
|
||||
private final Comparable<?> orderingVal;
|
||||
|
||||
public HoodieAvroPayload(GenericRecord record, Comparable<?> orderingVal) {
|
||||
this(Option.of(record));
|
||||
this.recordBytes = record == null ? new byte[0] : HoodieAvroUtils.avroToBytes(record);
|
||||
this.orderingVal = orderingVal;
|
||||
}
|
||||
|
||||
public HoodieAvroPayload(Option<GenericRecord> record) {
|
||||
if (record.isPresent()) {
|
||||
this.recordBytes = HoodieAvroUtils.avroToBytes(record.get());
|
||||
} else {
|
||||
this.recordBytes = new byte[0];
|
||||
}
|
||||
this.recordBytes = record.isPresent() ? HoodieAvroUtils.avroToBytes(record.get()) : new byte[0];
|
||||
this.orderingVal = 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -71,4 +70,9 @@ public class HoodieAvroPayload implements HoodieRecordPayload<HoodieAvroPayload>
|
||||
public byte[] getRecordBytes() {
|
||||
return recordBytes;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Comparable<?> getOrderingValue() {
|
||||
return orderingVal;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -114,4 +114,16 @@ public interface HoodieRecordPayload<T extends HoodieRecordPayload> extends Seri
|
||||
default Option<Map<String, String>> getMetadata() {
|
||||
return Option.empty();
|
||||
}
|
||||
|
||||
/**
|
||||
* This method can be used to extract the ordering value of the payload for combining/merging,
|
||||
* or 0 if no value is specified which means natural order(arrival time is used).
|
||||
*
|
||||
* @return the ordering value
|
||||
*/
|
||||
@PublicAPIMethod(maturity = ApiMaturityLevel.STABLE)
|
||||
default Comparable<?> getOrderingValue() {
|
||||
// default natural order
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -105,4 +105,9 @@ public class OverwriteWithLatestAvroPayload extends BaseAvroPayload
|
||||
}
|
||||
return Objects.equals(value, defaultValue);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Comparable<?> getOrderingValue() {
|
||||
return this.orderingVal;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -18,8 +18,8 @@
|
||||
|
||||
package org.apache.hudi.common.table.log;
|
||||
|
||||
import org.apache.hudi.common.model.DeleteRecord;
|
||||
import org.apache.hudi.common.model.HoodieAvroRecord;
|
||||
import org.apache.hudi.common.model.HoodieKey;
|
||||
import org.apache.hudi.common.model.HoodieLogFile;
|
||||
import org.apache.hudi.common.model.HoodieRecord;
|
||||
import org.apache.hudi.common.model.HoodieRecordPayload;
|
||||
@@ -404,11 +404,11 @@ public abstract class AbstractHoodieLogRecordReader {
|
||||
protected abstract void processNextRecord(HoodieRecord<? extends HoodieRecordPayload> hoodieRecord) throws Exception;
|
||||
|
||||
/**
|
||||
* Process next deleted key.
|
||||
* Process next deleted record.
|
||||
*
|
||||
* @param key Deleted record key
|
||||
* @param deleteRecord Deleted record(hoodie key and ordering value)
|
||||
*/
|
||||
protected abstract void processNextDeletedKey(HoodieKey key);
|
||||
protected abstract void processNextDeletedRecord(DeleteRecord deleteRecord);
|
||||
|
||||
/**
|
||||
* Process the set of log blocks belonging to the last instant which is read fully.
|
||||
@@ -433,7 +433,7 @@ public abstract class AbstractHoodieLogRecordReader {
|
||||
processDataBlock((HoodieParquetDataBlock) lastBlock, keys);
|
||||
break;
|
||||
case DELETE_BLOCK:
|
||||
Arrays.stream(((HoodieDeleteBlock) lastBlock).getKeysToDelete()).forEach(this::processNextDeletedKey);
|
||||
Arrays.stream(((HoodieDeleteBlock) lastBlock).getRecordsToDelete()).forEach(this::processNextDeletedRecord);
|
||||
break;
|
||||
case CORRUPT_BLOCK:
|
||||
LOG.warn("Found a corrupt block which was not rolled back");
|
||||
|
||||
@@ -19,6 +19,7 @@
|
||||
package org.apache.hudi.common.table.log;
|
||||
|
||||
import org.apache.hudi.common.config.HoodieCommonConfig;
|
||||
import org.apache.hudi.common.model.DeleteRecord;
|
||||
import org.apache.hudi.common.model.HoodieAvroRecord;
|
||||
import org.apache.hudi.common.model.HoodieKey;
|
||||
import org.apache.hudi.common.model.HoodieOperation;
|
||||
@@ -28,6 +29,7 @@ import org.apache.hudi.common.util.DefaultSizeEstimator;
|
||||
import org.apache.hudi.common.util.HoodieRecordSizeEstimator;
|
||||
import org.apache.hudi.common.util.HoodieTimer;
|
||||
import org.apache.hudi.common.util.Option;
|
||||
import org.apache.hudi.common.util.ReflectionUtils;
|
||||
import org.apache.hudi.common.util.SpillableMapUtils;
|
||||
import org.apache.hudi.common.util.collection.ExternalSpillableMap;
|
||||
import org.apache.hudi.exception.HoodieIOException;
|
||||
@@ -135,7 +137,7 @@ public class HoodieMergedLogRecordScanner extends AbstractHoodieLogRecordReader
|
||||
String key = hoodieRecord.getRecordKey();
|
||||
if (records.containsKey(key)) {
|
||||
// Merge and store the merged record. The HoodieRecordPayload implementation is free to decide what should be
|
||||
// done when a delete (empty payload) is encountered before or after an insert/update.
|
||||
// done when a DELETE (empty payload) is encountered before or after an insert/update.
|
||||
|
||||
HoodieRecord<? extends HoodieRecordPayload> oldRecord = records.get(key);
|
||||
HoodieRecordPayload oldValue = oldRecord.getData();
|
||||
@@ -152,9 +154,29 @@ public class HoodieMergedLogRecordScanner extends AbstractHoodieLogRecordReader
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void processNextDeletedKey(HoodieKey hoodieKey) {
|
||||
records.put(hoodieKey.getRecordKey(), SpillableMapUtils.generateEmptyPayload(hoodieKey.getRecordKey(),
|
||||
hoodieKey.getPartitionPath(), getPayloadClassFQN()));
|
||||
protected void processNextDeletedRecord(DeleteRecord deleteRecord) {
|
||||
String key = deleteRecord.getRecordKey();
|
||||
HoodieRecord<? extends HoodieRecordPayload> oldRecord = records.get(key);
|
||||
if (oldRecord != null) {
|
||||
// Merge and store the merged record. The ordering val is taken to decide whether the same key record
|
||||
// should be deleted or be kept. The old record is kept only if the DELETE record has smaller ordering val.
|
||||
// For same ordering values, uses the natural order(arrival time semantics).
|
||||
|
||||
Comparable curOrderingVal = oldRecord.getData().getOrderingValue();
|
||||
Comparable deleteOrderingVal = deleteRecord.getOrderingValue();
|
||||
// Checks the ordering value does not equal to 0
|
||||
// because we use 0 as the default value which means natural order
|
||||
boolean choosePrev = !deleteOrderingVal.equals(0)
|
||||
&& ReflectionUtils.isSameClass(curOrderingVal, deleteOrderingVal)
|
||||
&& curOrderingVal.compareTo(deleteOrderingVal) > 0;
|
||||
if (choosePrev) {
|
||||
// The DELETE message is obsolete if the old message has greater orderingVal.
|
||||
return;
|
||||
}
|
||||
}
|
||||
// Put the DELETE record
|
||||
records.put(key, SpillableMapUtils.generateEmptyPayload(key,
|
||||
deleteRecord.getPartitionPath(), deleteRecord.getOrderingValue(), getPayloadClassFQN()));
|
||||
}
|
||||
|
||||
public long getTotalTimeTakenToReadAndMergeBlocks() {
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
|
||||
package org.apache.hudi.common.table.log;
|
||||
|
||||
import org.apache.hudi.common.model.HoodieKey;
|
||||
import org.apache.hudi.common.model.DeleteRecord;
|
||||
import org.apache.hudi.common.model.HoodieRecord;
|
||||
import org.apache.hudi.common.model.HoodieRecordPayload;
|
||||
import org.apache.hudi.common.util.Option;
|
||||
@@ -56,7 +56,7 @@ public class HoodieUnMergedLogRecordScanner extends AbstractHoodieLogRecordReade
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void processNextDeletedKey(HoodieKey key) {
|
||||
protected void processNextDeletedRecord(DeleteRecord deleteRecord) {
|
||||
throw new IllegalStateException("Not expected to see delete records in this log-scan mode. Check Job Config");
|
||||
}
|
||||
|
||||
@@ -64,9 +64,9 @@ public class HoodieUnMergedLogRecordScanner extends AbstractHoodieLogRecordReade
|
||||
* A callback for log record scanner.
|
||||
*/
|
||||
@FunctionalInterface
|
||||
public static interface LogRecordScannerCallback {
|
||||
public interface LogRecordScannerCallback {
|
||||
|
||||
public void apply(HoodieRecord<? extends HoodieRecordPayload> record) throws Exception;
|
||||
void apply(HoodieRecord<? extends HoodieRecordPayload> record) throws Exception;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -19,6 +19,7 @@
|
||||
package org.apache.hudi.common.table.log.block;
|
||||
|
||||
import org.apache.hudi.common.fs.SizeAwareDataInputStream;
|
||||
import org.apache.hudi.common.model.DeleteRecord;
|
||||
import org.apache.hudi.common.model.HoodieKey;
|
||||
import org.apache.hudi.common.util.Option;
|
||||
import org.apache.hudi.common.util.SerializationUtils;
|
||||
@@ -31,6 +32,7 @@ import java.io.ByteArrayOutputStream;
|
||||
import java.io.DataInputStream;
|
||||
import java.io.DataOutputStream;
|
||||
import java.io.IOException;
|
||||
import java.util.Arrays;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
@@ -39,11 +41,11 @@ import java.util.Map;
|
||||
*/
|
||||
public class HoodieDeleteBlock extends HoodieLogBlock {
|
||||
|
||||
private HoodieKey[] keysToDelete;
|
||||
private DeleteRecord[] recordsToDelete;
|
||||
|
||||
public HoodieDeleteBlock(HoodieKey[] keysToDelete, Map<HeaderMetadataType, String> header) {
|
||||
public HoodieDeleteBlock(DeleteRecord[] recordsToDelete, Map<HeaderMetadataType, String> header) {
|
||||
this(Option.empty(), null, false, Option.empty(), header, new HashMap<>());
|
||||
this.keysToDelete = keysToDelete;
|
||||
this.recordsToDelete = recordsToDelete;
|
||||
}
|
||||
|
||||
public HoodieDeleteBlock(Option<byte[]> content, FSDataInputStream inputStream, boolean readBlockLazily,
|
||||
@@ -59,23 +61,23 @@ public class HoodieDeleteBlock extends HoodieLogBlock {
|
||||
// In case this method is called before realizing keys from content
|
||||
if (content.isPresent()) {
|
||||
return content.get();
|
||||
} else if (readBlockLazily && keysToDelete == null) {
|
||||
} else if (readBlockLazily && recordsToDelete == null) {
|
||||
// read block lazily
|
||||
getKeysToDelete();
|
||||
getRecordsToDelete();
|
||||
}
|
||||
|
||||
ByteArrayOutputStream baos = new ByteArrayOutputStream();
|
||||
DataOutputStream output = new DataOutputStream(baos);
|
||||
byte[] bytesToWrite = SerializationUtils.serialize(getKeysToDelete());
|
||||
byte[] bytesToWrite = SerializationUtils.serialize(getRecordsToDelete());
|
||||
output.writeInt(version);
|
||||
output.writeInt(bytesToWrite.length);
|
||||
output.write(bytesToWrite);
|
||||
return baos.toByteArray();
|
||||
}
|
||||
|
||||
public HoodieKey[] getKeysToDelete() {
|
||||
public DeleteRecord[] getRecordsToDelete() {
|
||||
try {
|
||||
if (keysToDelete == null) {
|
||||
if (recordsToDelete == null) {
|
||||
if (!getContent().isPresent() && readBlockLazily) {
|
||||
// read content from disk
|
||||
inflate();
|
||||
@@ -86,15 +88,25 @@ public class HoodieDeleteBlock extends HoodieLogBlock {
|
||||
int dataLength = dis.readInt();
|
||||
byte[] data = new byte[dataLength];
|
||||
dis.readFully(data);
|
||||
this.keysToDelete = SerializationUtils.<HoodieKey[]>deserialize(data);
|
||||
this.recordsToDelete = deserialize(version, data);
|
||||
deflate();
|
||||
}
|
||||
return keysToDelete;
|
||||
return recordsToDelete;
|
||||
} catch (IOException io) {
|
||||
throw new HoodieIOException("Unable to generate keys to delete from block content", io);
|
||||
}
|
||||
}
|
||||
|
||||
private static DeleteRecord[] deserialize(int version, byte[] data) {
|
||||
if (version == 1) {
|
||||
// legacy version
|
||||
HoodieKey[] keys = SerializationUtils.<HoodieKey[]>deserialize(data);
|
||||
return Arrays.stream(keys).map(DeleteRecord::create).toArray(DeleteRecord[]::new);
|
||||
} else {
|
||||
return SerializationUtils.<DeleteRecord[]>deserialize(data);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public HoodieLogBlockType getBlockType() {
|
||||
return HoodieLogBlockType.DELETE_BLOCK;
|
||||
|
||||
@@ -51,7 +51,7 @@ public abstract class HoodieLogBlock {
|
||||
* corresponding changes need to be made to {@link HoodieLogBlockVersion} TODO : Change this to a class, something
|
||||
* like HoodieLogBlockVersionV1/V2 and implement/override operations there
|
||||
*/
|
||||
public static int version = 1;
|
||||
public static int version = 2;
|
||||
// Header for each log block
|
||||
private final Map<HeaderMetadataType, String> logBlockHeader;
|
||||
// Footer for each log block
|
||||
|
||||
@@ -173,4 +173,11 @@ public class ReflectionUtils {
|
||||
}
|
||||
return classes;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns whether the given two comparable values come from the same runtime class.
|
||||
*/
|
||||
public static boolean isSameClass(Comparable<?> v, Comparable<?> o) {
|
||||
return v.getClass() == o.getClass();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -161,9 +161,9 @@ public class SpillableMapUtils {
|
||||
/**
|
||||
* Utility method to convert bytes to HoodieRecord using schema and payload class.
|
||||
*/
|
||||
public static <R> R generateEmptyPayload(String recKey, String partitionPath, String payloadClazz) {
|
||||
public static <R> R generateEmptyPayload(String recKey, String partitionPath, Comparable orderingVal, String payloadClazz) {
|
||||
HoodieRecord<? extends HoodieRecordPayload> hoodieRecord = new HoodieAvroRecord<>(new HoodieKey(recKey, partitionPath),
|
||||
ReflectionUtils.loadPayload(payloadClazz, new Object[] {Option.empty()}, Option.class));
|
||||
ReflectionUtils.loadPayload(payloadClazz, new Object[] {null, orderingVal}, GenericRecord.class, Comparable.class));
|
||||
return (R) hoodieRecord;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -19,8 +19,8 @@
|
||||
package org.apache.hudi.metadata;
|
||||
|
||||
import org.apache.hudi.common.config.HoodieMetadataConfig;
|
||||
import org.apache.hudi.common.model.DeleteRecord;
|
||||
import org.apache.hudi.common.model.HoodieAvroRecord;
|
||||
import org.apache.hudi.common.model.HoodieKey;
|
||||
import org.apache.hudi.common.model.HoodieRecord;
|
||||
import org.apache.hudi.common.model.HoodieRecordPayload;
|
||||
import org.apache.hudi.common.table.HoodieTableConfig;
|
||||
@@ -80,9 +80,9 @@ public class HoodieMetadataMergedLogRecordReader extends HoodieMergedLogRecordSc
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void processNextDeletedKey(HoodieKey hoodieKey) {
|
||||
if (mergeKeyFilter.isEmpty() || mergeKeyFilter.contains(hoodieKey.getRecordKey())) {
|
||||
super.processNextDeletedKey(hoodieKey);
|
||||
protected void processNextDeletedRecord(DeleteRecord deleteRecord) {
|
||||
if (mergeKeyFilter.isEmpty() || mergeKeyFilter.contains(deleteRecord.getRecordKey())) {
|
||||
super.processNextDeletedRecord(deleteRecord);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user