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

org.apache.iceberg.ManageSnapshots 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;

import org.apache.iceberg.exceptions.CommitFailedException;
import org.apache.iceberg.exceptions.DuplicateWAPCommitException;
import org.apache.iceberg.exceptions.ValidationException;

/**
 * API for managing snapshots. Allows rolling table data back to a stated at an older table {@link Snapshot snapshot}.
 * Rollback:
 *  

* This API does not allow conflicting calls to {@link #setCurrentSnapshot(long)} and * {@link #rollbackToTime(long)}. *

* When committing, these changes will be applied to the current table metadata. Commit conflicts * will not be resolved and will result in a {@link CommitFailedException}. * Cherrypick: *

* In an audit workflow, new data is written to an orphan {@link Snapshot snapshot} that is not committed as * the table's current state until it is audited. After auditing a change, it may need to be applied or cherry-picked * on top of the latest snapshot instead of the one that was current when the audited changes were created. * This class adds support for cherry-picking the changes from an orphan snapshot by applying them to * the current snapshot. The output of the operation is a new snapshot with the changes from cherry-picked * snapshot. *

*/ public interface ManageSnapshots extends PendingUpdate { /** * Roll this table's data back to a specific {@link Snapshot} identified by id. * * @param snapshotId long id of the snapshot to roll back table data to * @return this for method chaining * @throws IllegalArgumentException If the table has no snapshot with the given id */ ManageSnapshots setCurrentSnapshot(long snapshotId); /** * Roll this table's data back to the last {@link Snapshot} before the given timestamp. * * @param timestampMillis a long timestamp, as returned by {@link System#currentTimeMillis()} * @return this for method chaining * @throws IllegalArgumentException If the table has no old snapshot before the given timestamp */ ManageSnapshots rollbackToTime(long timestampMillis); /** * Rollback table's state to a specific {@link Snapshot} identified by id. * @param snapshotId long id of snapshot id to roll back table to. Must be an ancestor of the current snapshot * @throws IllegalArgumentException If the table has no snapshot with the given id * @throws ValidationException If given snapshot id is not an ancestor of the current state */ ManageSnapshots rollbackTo(long snapshotId); /** * Apply supported changes in given snapshot and create a new snapshot which will be set as the * current snapshot on commit. * @param snapshotId a snapshotId whose changes to apply * @return this for method chaining * @throws IllegalArgumentException If the table has no snapshot with the given id * @throws DuplicateWAPCommitException In case of a WAP workflow and if the table has a duplicate commit with same * wapId */ ManageSnapshots cherrypick(long snapshotId); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy