org.dinky.shaded.paimon.operation.AppendOnlyFileStoreScan 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.dinky.shaded.paimon.operation;
import org.dinky.shaded.paimon.AppendOnlyFileStore;
import org.dinky.shaded.paimon.manifest.ManifestEntry;
import org.dinky.shaded.paimon.manifest.ManifestFile;
import org.dinky.shaded.paimon.manifest.ManifestList;
import org.dinky.shaded.paimon.predicate.Predicate;
import org.dinky.shaded.paimon.schema.SchemaManager;
import org.dinky.shaded.paimon.stats.FieldStatsConverters;
import org.dinky.shaded.paimon.types.RowType;
import org.dinky.shaded.paimon.utils.SnapshotManager;
import java.util.List;
/** {@link FileStoreScan} for {@link AppendOnlyFileStore}. */
public class AppendOnlyFileStoreScan extends AbstractFileStoreScan {
private final FieldStatsConverters fieldStatsConverters;
private Predicate filter;
public AppendOnlyFileStoreScan(
RowType partitionType,
ScanBucketFilter bucketFilter,
SnapshotManager snapshotManager,
SchemaManager schemaManager,
long schemaId,
ManifestFile.Factory manifestFileFactory,
ManifestList.Factory manifestListFactory,
int numOfBuckets,
boolean checkNumOfBuckets,
Integer scanManifestParallelism) {
super(
partitionType,
bucketFilter,
snapshotManager,
schemaManager,
manifestFileFactory,
manifestListFactory,
numOfBuckets,
checkNumOfBuckets,
scanManifestParallelism);
this.fieldStatsConverters =
new FieldStatsConverters(sid -> scanTableSchema(sid).fields(), schemaId);
}
public AppendOnlyFileStoreScan withFilter(Predicate predicate) {
this.filter = predicate;
this.bucketKeyFilter.pushdown(predicate);
return this;
}
/** Note: Keep this thread-safe. */
@Override
protected boolean filterByStats(ManifestEntry entry) {
return filter == null
|| filter.test(
entry.file().rowCount(),
entry.file()
.valueStats()
.fields(
fieldStatsConverters.getOrCreate(entry.file().schemaId()),
entry.file().rowCount()));
}
@Override
protected boolean filterWholeBucketByStats(List entries) {
// We don't need to filter per-bucket entries here
return true;
}
}