org.apache.hudi.execution.CopyOnWriteInsertHandler Maven / Gradle / Ivy
The newest version!
/*
* 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.execution;
import org.apache.hudi.client.WriteStatus;
import org.apache.hudi.common.engine.TaskContextSupplier;
import org.apache.hudi.common.model.HoodieRecord;
import org.apache.hudi.common.util.queue.HoodieConsumer;
import org.apache.hudi.config.HoodieWriteConfig;
import org.apache.hudi.execution.HoodieLazyInsertIterable.HoodieInsertValueGenResult;
import org.apache.hudi.io.HoodieWriteHandle;
import org.apache.hudi.io.WriteHandleFactory;
import org.apache.hudi.table.HoodieTable;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import static org.apache.hudi.common.util.ValidationUtils.checkState;
/**
* Consumes stream of hoodie records from in-memory queue and writes to one or more create-handles.
*/
public class CopyOnWriteInsertHandler
implements HoodieConsumer, List> {
private static final Logger LOG = LoggerFactory.getLogger(CopyOnWriteInsertHandler.class);
private final HoodieWriteConfig config;
private final String instantTime;
private final boolean areRecordsSorted;
private final HoodieTable hoodieTable;
private final String idPrefix;
private final TaskContextSupplier taskContextSupplier;
private final WriteHandleFactory writeHandleFactory;
// Tracks number of skipped records seen by this instance
private int numSkippedRecords = 0;
private final List statuses = new ArrayList<>();
// Stores the open HoodieWriteHandle for each table partition path
// If the records are consumed in order, there should be only one open handle in this mapping.
// Otherwise, there may be multiple handles.
private final Map handles = new HashMap<>();
public CopyOnWriteInsertHandler(HoodieWriteConfig config, String instantTime,
boolean areRecordsSorted, HoodieTable hoodieTable, String idPrefix,
TaskContextSupplier taskContextSupplier,
WriteHandleFactory writeHandleFactory) {
this.config = config;
this.instantTime = instantTime;
this.areRecordsSorted = areRecordsSorted;
this.hoodieTable = hoodieTable;
this.idPrefix = idPrefix;
this.taskContextSupplier = taskContextSupplier;
this.writeHandleFactory = writeHandleFactory;
}
@Override
public void consume(HoodieInsertValueGenResult genResult) {
final HoodieRecord record = genResult.getResult();
String partitionPath = record.getPartitionPath();
// just skip the ignored record,do not make partitions on fs
try {
if (record.shouldIgnore(genResult.schema, config.getProps())) {
numSkippedRecords++;
return;
}
} catch (IOException e) {
LOG.warn("Writing record should be ignore " + record, e);
}
HoodieWriteHandle,?,?,?> handle = handles.get(partitionPath);
if (handle == null) {
// If the records are sorted, this means that we encounter a new partition path
// and the records for the previous partition path are all written,
// so we can safely closely existing open handle to reduce memory footprint.
if (areRecordsSorted) {
closeOpenHandles();
}
// Lazily initialize the handle, for the first time
handle = writeHandleFactory.create(config, instantTime, hoodieTable,
record.getPartitionPath(), idPrefix, taskContextSupplier);
handles.put(partitionPath, handle);
}
if (!handle.canWrite(genResult.getResult())) {
// Handle is full. Close the handle and add the WriteStatus
statuses.addAll(handle.close());
// Open new handle
handle = writeHandleFactory.create(config, instantTime, hoodieTable,
record.getPartitionPath(), idPrefix, taskContextSupplier);
handles.put(partitionPath, handle);
}
handle.write(record, genResult.schema, config.getProps());
}
@Override
public List finish() {
closeOpenHandles();
checkState(statuses.size() + numSkippedRecords > 0);
return statuses;
}
private void closeOpenHandles() {
for (HoodieWriteHandle,?,?,?> handle : handles.values()) {
statuses.addAll(handle.close());
}
handles.clear();
}
}