All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.iceberg.spark.actions.SparkActions 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.apache.iceberg.spark.actions;

import org.apache.iceberg.Table;
import org.apache.iceberg.actions.ActionsProvider;
import org.apache.iceberg.actions.ComputeTableStats;
import org.apache.iceberg.actions.RemoveDanglingDeleteFiles;
import org.apache.iceberg.spark.Spark3Util;
import org.apache.iceberg.spark.Spark3Util.CatalogAndIdentifier;
import org.apache.spark.sql.SparkSession;
import org.apache.spark.sql.connector.catalog.CatalogPlugin;

/**
 * An implementation of {@link ActionsProvider} for Spark.
 *
 * 

This class is the primary API for interacting with actions in Spark that users should use to * instantiate particular actions. */ public class SparkActions implements ActionsProvider { private final SparkSession spark; private SparkActions(SparkSession spark) { this.spark = spark; } public static SparkActions get(SparkSession spark) { return new SparkActions(spark); } public static SparkActions get() { return new SparkActions(SparkSession.active()); } @Override public SnapshotTableSparkAction snapshotTable(String tableIdent) { String ctx = "snapshot source"; CatalogPlugin defaultCatalog = spark.sessionState().catalogManager().currentCatalog(); CatalogAndIdentifier catalogAndIdent = Spark3Util.catalogAndIdentifier(ctx, spark, tableIdent, defaultCatalog); return new SnapshotTableSparkAction( spark, catalogAndIdent.catalog(), catalogAndIdent.identifier()); } @Override public MigrateTableSparkAction migrateTable(String tableIdent) { String ctx = "migrate target"; CatalogPlugin defaultCatalog = spark.sessionState().catalogManager().currentCatalog(); CatalogAndIdentifier catalogAndIdent = Spark3Util.catalogAndIdentifier(ctx, spark, tableIdent, defaultCatalog); return new MigrateTableSparkAction( spark, catalogAndIdent.catalog(), catalogAndIdent.identifier()); } @Override public RewriteDataFilesSparkAction rewriteDataFiles(Table table) { return new RewriteDataFilesSparkAction(spark, table); } @Override public DeleteOrphanFilesSparkAction deleteOrphanFiles(Table table) { return new DeleteOrphanFilesSparkAction(spark, table); } @Override public RewriteManifestsSparkAction rewriteManifests(Table table) { return new RewriteManifestsSparkAction(spark, table); } @Override public ExpireSnapshotsSparkAction expireSnapshots(Table table) { return new ExpireSnapshotsSparkAction(spark, table); } @Override public DeleteReachableFilesSparkAction deleteReachableFiles(String metadataLocation) { return new DeleteReachableFilesSparkAction(spark, metadataLocation); } @Override public RewritePositionDeleteFilesSparkAction rewritePositionDeletes(Table table) { return new RewritePositionDeleteFilesSparkAction(spark, table); } @Override public ComputeTableStats computeTableStats(Table table) { return new ComputeTableStatsSparkAction(spark, table); } @Override public RemoveDanglingDeleteFiles removeDanglingDeleteFiles(Table table) { return new RemoveDanglingDeletesSparkAction(spark, table); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy