Skip to content

Commit

Permalink
[core] Optimize first_row batch read (apache#3055)
Browse files Browse the repository at this point in the history
  • Loading branch information
JingsongLi authored and zhu3pang committed Mar 29, 2024
1 parent 32378ad commit 3ebe41a
Show file tree
Hide file tree
Showing 10 changed files with 44 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,8 @@ public void pushdown(Predicate keyFilter) {
forWrite,
options.scanManifestParallelism(),
branchName,
options.deletionVectorsEnabled());
options.deletionVectorsEnabled(),
options.mergeEngine());
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ public RecordReader<KeyValue> createReader(DataSplit split) throws IOException {
private RecordReader<KeyValue> createReaderWithoutOuterProjection(DataSplit split)
throws IOException {
if (split.beforeFiles().isEmpty()) {
if (split.isStreaming() || split.deletionFiles().isPresent()) {
if (split.isStreaming() || split.convertToRawFiles().isPresent()) {
return noMergeRead(
split.partition(),
split.bucket(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

package org.apache.paimon.operation;

import org.apache.paimon.CoreOptions.MergeEngine;
import org.apache.paimon.KeyValueFileStore;
import org.apache.paimon.manifest.ManifestEntry;
import org.apache.paimon.manifest.ManifestFile;
Expand All @@ -36,6 +37,8 @@
import java.util.Collections;
import java.util.List;

import static org.apache.paimon.CoreOptions.MergeEngine.FIRST_ROW;

/** {@link FileStoreScan} for {@link KeyValueFileStore}. */
public class KeyValueFileStoreScan extends AbstractFileStoreScan {

Expand All @@ -45,6 +48,7 @@ public class KeyValueFileStoreScan extends AbstractFileStoreScan {
private Predicate keyFilter;
private Predicate valueFilter;
private final boolean deletionVectorsEnabled;
private final MergeEngine mergeEngine;

public KeyValueFileStoreScan(
RowType partitionType,
Expand All @@ -59,7 +63,8 @@ public KeyValueFileStoreScan(
boolean checkNumOfBuckets,
Integer scanManifestParallelism,
String branchName,
boolean deletionVectorsEnabled) {
boolean deletionVectorsEnabled,
MergeEngine mergeEngine) {
super(
partitionType,
bucketFilter,
Expand All @@ -81,6 +86,7 @@ public KeyValueFileStoreScan(
sid -> keyValueFieldsExtractor.valueFields(scanTableSchema(sid)),
schema.id());
this.deletionVectorsEnabled = deletionVectorsEnabled;
this.mergeEngine = mergeEngine;
}

public KeyValueFileStoreScan withKeyFilter(Predicate predicate) {
Expand All @@ -100,7 +106,9 @@ protected boolean filterByStats(ManifestEntry entry) {
Predicate filter = null;
FieldStatsArraySerializer serializer = null;
BinaryTableStats stats = null;
if (deletionVectorsEnabled && entry.level() > 0 && valueFilter != null) {
if ((deletionVectorsEnabled || mergeEngine == FIRST_ROW)
&& entry.level() > 0
&& valueFilter != null) {
filter = valueFilter;
serializer = fieldValueStatsConverters.getOrCreate(entry.file().schemaId());
stats = entry.file().valueStats();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,10 @@ public SnapshotReader newSnapshotReader(String branchName) {
@Override
public InnerTableScan newScan() {
return new InnerTableScanImpl(
coreOptions(), newSnapshotReader(), DefaultValueAssigner.create(tableSchema));
tableSchema.primaryKeys().size() > 0,
coreOptions(),
newSnapshotReader(),
DefaultValueAssigner.create(tableSchema));
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,11 +116,13 @@ public KeyValueFileStore store() {

@Override
protected SplitGenerator splitGenerator() {
CoreOptions options = store().options();
return new MergeTreeSplitGenerator(
store().newKeyComparator(),
store().options().splitTargetSize(),
store().options().splitOpenFileCost(),
store().options().deletionVectorsEnabled());
options.splitTargetSize(),
options.splitOpenFileCost(),
options.deletionVectorsEnabled(),
options.mergeEngine());
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
import java.util.ArrayList;
import java.util.List;

import static org.apache.paimon.CoreOptions.MergeEngine.FIRST_ROW;

/** {@link TableScan} implementation for batch planning. */
public class InnerTableScanImpl extends AbstractInnerTableScan {

Expand All @@ -39,13 +41,14 @@ public class InnerTableScanImpl extends AbstractInnerTableScan {
private Integer pushDownLimit;

public InnerTableScanImpl(
boolean pkTable,
CoreOptions options,
SnapshotReader snapshotReader,
DefaultValueAssigner defaultValueAssigner) {
super(options, snapshotReader);
this.hasNext = true;
this.defaultValueAssigner = defaultValueAssigner;
if (options.deletionVectorsEnabled()) {
if (pkTable && (options.deletionVectorsEnabled() || options.mergeEngine() == FIRST_ROW)) {
snapshotReader.withLevelFilter(level -> level > 0);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

package org.apache.paimon.table.source;

import org.apache.paimon.CoreOptions.MergeEngine;
import org.apache.paimon.data.InternalRow;
import org.apache.paimon.io.DataFileMeta;
import org.apache.paimon.mergetree.SortedRun;
Expand All @@ -31,6 +32,8 @@
import java.util.function.Function;
import java.util.stream.Collectors;

import static org.apache.paimon.CoreOptions.MergeEngine.FIRST_ROW;

/** Merge tree implementation of {@link SplitGenerator}. */
public class MergeTreeSplitGenerator implements SplitGenerator {

Expand All @@ -42,20 +45,24 @@ public class MergeTreeSplitGenerator implements SplitGenerator {

private final boolean deletionVectorsEnabled;

private final MergeEngine mergeEngine;

public MergeTreeSplitGenerator(
Comparator<InternalRow> keyComparator,
long targetSplitSize,
long openFileCost,
boolean deletionVectorsEnabled) {
boolean deletionVectorsEnabled,
MergeEngine mergeEngine) {
this.keyComparator = keyComparator;
this.targetSplitSize = targetSplitSize;
this.openFileCost = openFileCost;
this.deletionVectorsEnabled = deletionVectorsEnabled;
this.mergeEngine = mergeEngine;
}

@Override
public List<List<DataFileMeta>> splitForBatch(List<DataFileMeta> files) {
if (deletionVectorsEnabled) {
if (deletionVectorsEnabled || mergeEngine == FIRST_ROW) {
Function<DataFileMeta, Long> weightFunc =
file -> Math.max(file.fileSize(), openFileCost);
return BinPacking.packForOrdered(files, weightFunc, targetSplitSize);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
package org.apache.paimon.table.source.snapshot;

import org.apache.paimon.CoreOptions;
import org.apache.paimon.CoreOptions.MergeEngine;
import org.apache.paimon.Snapshot;
import org.apache.paimon.codegen.CodeGenUtils;
import org.apache.paimon.codegen.RecordComparator;
Expand Down Expand Up @@ -63,6 +64,7 @@
import java.util.function.BiConsumer;
import java.util.stream.Collectors;

import static org.apache.paimon.CoreOptions.MergeEngine.FIRST_ROW;
import static org.apache.paimon.deletionvectors.DeletionVectorsIndexFile.DELETION_VECTORS_INDEX;
import static org.apache.paimon.operation.FileStoreScan.Plan.groupByPartFiles;
import static org.apache.paimon.predicate.PredicateBuilder.transformFieldMapping;
Expand All @@ -73,6 +75,7 @@ public class SnapshotReaderImpl implements SnapshotReader {
private final FileStoreScan scan;
private final TableSchema tableSchema;
private final CoreOptions options;
private final MergeEngine mergeEngine;
private final boolean deletionVectors;
private final SnapshotManager snapshotManager;
private final ConsumerManager consumerManager;
Expand Down Expand Up @@ -100,6 +103,7 @@ public SnapshotReaderImpl(
this.scan = scan;
this.tableSchema = tableSchema;
this.options = options;
this.mergeEngine = options.mergeEngine();
this.deletionVectors = options.deletionVectorsEnabled();
this.snapshotManager = snapshotManager;
this.consumerManager =
Expand Down Expand Up @@ -435,7 +439,7 @@ private List<RawFile> convertToRawFiles(
String bucketPath = pathFactory.bucketPath(partition, bucket).toString();

// append only or deletionVectors files can be returned
if (tableSchema.primaryKeys().isEmpty() || deletionVectors) {
if (tableSchema.primaryKeys().isEmpty() || deletionVectors || mergeEngine == FIRST_ROW) {
return makeRawTableFiles(bucketPath, dataFiles);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ public SnapshotReader newSnapshotReader(String branchName) {
@Override
public InnerTableScan newScan() {
return new InnerTableScanImpl(
dataTable.schema().primaryKeys().size() > 0,
coreOptions(),
newSnapshotReader(),
DefaultValueAssigner.create(dataTable.schema()));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
import java.util.List;
import java.util.stream.Collectors;

import static org.apache.paimon.CoreOptions.MergeEngine.DEDUPLICATE;
import static org.apache.paimon.data.BinaryRow.EMPTY_ROW;
import static org.apache.paimon.io.DataFileTestUtils.fromMinMax;
import static org.assertj.core.api.Assertions.assertThat;
Expand Down Expand Up @@ -108,14 +109,14 @@ public void testMergeTree() {
Comparator<InternalRow> comparator = Comparator.comparingInt(o -> o.getInt(0));
assertThat(
toNames(
new MergeTreeSplitGenerator(comparator, 100, 2, false)
new MergeTreeSplitGenerator(comparator, 100, 2, false, DEDUPLICATE)
.splitForBatch(files)))
.containsExactlyInAnyOrder(
Arrays.asList("1", "2", "4", "3", "5"), Collections.singletonList("6"));

assertThat(
toNames(
new MergeTreeSplitGenerator(comparator, 100, 30, false)
new MergeTreeSplitGenerator(comparator, 100, 30, false, DEDUPLICATE)
.splitForBatch(files)))
.containsExactlyInAnyOrder(
Arrays.asList("1", "2", "4", "3"),
Expand Down

0 comments on commit 3ebe41a

Please sign in to comment.