org.apache.iceberg.spark.procedures.SparkProcedures Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iceberg-spark-3.5_2.13 Show documentation
Show all versions of iceberg-spark-3.5_2.13 Show documentation
A table format for huge analytic datasets
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.iceberg.spark.procedures;
import java.util.Locale;
import java.util.Map;
import java.util.function.Supplier;
import org.apache.iceberg.relocated.com.google.common.collect.ImmutableMap;
import org.apache.spark.sql.connector.catalog.TableCatalog;
import org.apache.spark.sql.connector.iceberg.catalog.Procedure;
public class SparkProcedures {
private static final Map> BUILDERS = initProcedureBuilders();
private SparkProcedures() {}
public static ProcedureBuilder newBuilder(String name) {
// procedure resolution is case insensitive to match the existing Spark behavior for functions
Supplier builderSupplier = BUILDERS.get(name.toLowerCase(Locale.ROOT));
return builderSupplier != null ? builderSupplier.get() : null;
}
private static Map> initProcedureBuilders() {
ImmutableMap.Builder> mapBuilder = ImmutableMap.builder();
mapBuilder.put("rollback_to_snapshot", RollbackToSnapshotProcedure::builder);
mapBuilder.put("rollback_to_timestamp", RollbackToTimestampProcedure::builder);
mapBuilder.put("set_current_snapshot", SetCurrentSnapshotProcedure::builder);
mapBuilder.put("cherrypick_snapshot", CherrypickSnapshotProcedure::builder);
mapBuilder.put("rewrite_data_files", RewriteDataFilesProcedure::builder);
mapBuilder.put("rewrite_manifests", RewriteManifestsProcedure::builder);
mapBuilder.put("remove_orphan_files", RemoveOrphanFilesProcedure::builder);
mapBuilder.put("expire_snapshots", ExpireSnapshotsProcedure::builder);
mapBuilder.put("migrate", MigrateTableProcedure::builder);
mapBuilder.put("snapshot", SnapshotTableProcedure::builder);
mapBuilder.put("add_files", AddFilesProcedure::builder);
mapBuilder.put("ancestors_of", AncestorsOfProcedure::builder);
mapBuilder.put("register_table", RegisterTableProcedure::builder);
mapBuilder.put("publish_changes", PublishChangesProcedure::builder);
mapBuilder.put("create_changelog_view", CreateChangelogViewProcedure::builder);
mapBuilder.put("rewrite_position_delete_files", RewritePositionDeleteFilesProcedure::builder);
mapBuilder.put("fast_forward", FastForwardBranchProcedure::builder);
return mapBuilder.build();
}
public interface ProcedureBuilder {
ProcedureBuilder withTableCatalog(TableCatalog tableCatalog);
Procedure build();
}
}