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.
Spark 3.4: Support distributed planning (apache#8123)
- Loading branch information
1 parent
75862a8
commit c4e35a5
Showing
47 changed files
with
1,755 additions
and
163 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
392 changes: 392 additions & 0 deletions
392
core/src/main/java/org/apache/iceberg/BaseDistributedDataScan.java
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
/* | ||
* 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; | ||
|
||
import java.util.List; | ||
import org.apache.iceberg.relocated.com.google.common.collect.ImmutableList; | ||
|
||
abstract class DataScan<ThisT, T extends ScanTask, G extends ScanTaskGroup<T>> | ||
extends SnapshotScan<ThisT, T, G> { | ||
|
||
protected DataScan(Table table, Schema schema, TableScanContext context) { | ||
super(table, schema, context); | ||
} | ||
|
||
@Override | ||
protected boolean useSnapshotSchema() { | ||
return true; | ||
} | ||
|
||
protected ManifestGroup newManifestGroup( | ||
List<ManifestFile> dataManifests, List<ManifestFile> deleteManifests) { | ||
return newManifestGroup(dataManifests, deleteManifests, context().returnColumnStats()); | ||
} | ||
|
||
protected ManifestGroup newManifestGroup( | ||
List<ManifestFile> dataManifests, boolean withColumnStats) { | ||
return newManifestGroup(dataManifests, ImmutableList.of(), withColumnStats); | ||
} | ||
|
||
protected ManifestGroup newManifestGroup( | ||
List<ManifestFile> dataManifests, | ||
List<ManifestFile> deleteManifests, | ||
boolean withColumnStats) { | ||
|
||
ManifestGroup manifestGroup = | ||
new ManifestGroup(io(), dataManifests, deleteManifests) | ||
.caseSensitive(isCaseSensitive()) | ||
.select(withColumnStats ? SCAN_WITH_STATS_COLUMNS : SCAN_COLUMNS) | ||
.filterData(filter()) | ||
.specsById(table().specs()) | ||
.scanMetrics(scanMetrics()) | ||
.ignoreDeleted(); | ||
|
||
if (shouldIgnoreResiduals()) { | ||
manifestGroup = manifestGroup.ignoreResiduals(); | ||
} | ||
|
||
if (shouldPlanWithExecutor() && (dataManifests.size() > 1 || deleteManifests.size() > 1)) { | ||
manifestGroup = manifestGroup.planWith(planExecutor()); | ||
} | ||
|
||
return manifestGroup; | ||
} | ||
} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/* | ||
* 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; | ||
|
||
import org.apache.iceberg.relocated.com.google.common.base.Preconditions; | ||
|
||
public enum PlanningMode { | ||
AUTO("auto"), | ||
LOCAL("local"), | ||
DISTRIBUTED("distributed"); | ||
|
||
private final String modeName; | ||
|
||
PlanningMode(String modeName) { | ||
this.modeName = modeName; | ||
} | ||
|
||
public static PlanningMode fromName(String modeName) { | ||
Preconditions.checkArgument(modeName != null, "Mode name is null"); | ||
|
||
if (AUTO.modeName().equalsIgnoreCase(modeName)) { | ||
return AUTO; | ||
|
||
} else if (LOCAL.modeName().equalsIgnoreCase(modeName)) { | ||
return LOCAL; | ||
|
||
} else if (DISTRIBUTED.modeName().equalsIgnoreCase(modeName)) { | ||
return DISTRIBUTED; | ||
|
||
} else { | ||
throw new IllegalArgumentException("Unknown planning mode: " + modeName); | ||
} | ||
} | ||
|
||
public String modeName() { | ||
return modeName; | ||
} | ||
} |
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
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
Oops, something went wrong.