forked from apache/iceberg
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Core: Add EqualityDeleteRowReader (apache#2320)
- Loading branch information
1 parent
28621f9
commit 713136d
Showing
5 changed files
with
169 additions
and
8 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
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
57 changes: 57 additions & 0 deletions
57
spark/src/main/java/org/apache/iceberg/spark/source/EqualityDeleteRowReader.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,57 @@ | ||
/* | ||
* 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.iceberg.spark.source; | ||
|
||
import java.util.Map; | ||
import org.apache.iceberg.CombinedScanTask; | ||
import org.apache.iceberg.DataFile; | ||
import org.apache.iceberg.FileScanTask; | ||
import org.apache.iceberg.Schema; | ||
import org.apache.iceberg.encryption.EncryptionManager; | ||
import org.apache.iceberg.io.CloseableIterator; | ||
import org.apache.iceberg.io.FileIO; | ||
import org.apache.iceberg.util.PartitionUtil; | ||
import org.apache.spark.rdd.InputFileBlockHolder; | ||
import org.apache.spark.sql.catalyst.InternalRow; | ||
|
||
public class EqualityDeleteRowReader extends RowDataReader { | ||
private final Schema expectedSchema; | ||
|
||
public EqualityDeleteRowReader(CombinedScanTask task, Schema schema, Schema expectedSchema, String nameMapping, | ||
FileIO io, EncryptionManager encryptionManager, boolean caseSensitive) { | ||
super(task, schema, schema, nameMapping, io, encryptionManager, caseSensitive); | ||
this.expectedSchema = expectedSchema; | ||
} | ||
|
||
@Override | ||
CloseableIterator<InternalRow> open(FileScanTask task) { | ||
SparkDeleteFilter matches = new SparkDeleteFilter(task, tableSchema(), expectedSchema); | ||
|
||
// schema or rows returned by readers | ||
Schema requiredSchema = matches.requiredSchema(); | ||
Map<Integer, ?> idToConstant = PartitionUtil.constantsMap(task, RowDataReader::convertConstant); | ||
DataFile file = task.file(); | ||
|
||
// update the current file for Spark's filename() function | ||
InputFileBlockHolder.set(file.path().toString(), task.start(), task.length()); | ||
|
||
return matches.findEqualityDeleteRows(open(task, requiredSchema, idToConstant)).iterator(); | ||
} | ||
} |
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
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