-
Notifications
You must be signed in to change notification settings - Fork 3k
Docs: Separate page for Branching and Tagging #6723
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
jackye1995
merged 1 commit into
apache:master
from
amogh-jahagirdar:branching-tagging-docs
Apr 25, 2023
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,122 @@ | ||
| --- | ||
| title: "Branching and Tagging" | ||
| url: branching | ||
| aliases: | ||
| - "tables/branching" | ||
| menu: | ||
| main: | ||
| parent: Tables | ||
| weight: 0 | ||
| --- | ||
|
|
||
| <!-- | ||
| - 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. | ||
| --> | ||
|
|
||
| # Branching and Tagging | ||
|
|
||
| ## Overview | ||
|
|
||
| Iceberg table metadata maintains a log of snapshots which represent the changes applied to a table. | ||
| Snapshots are fundamental in Iceberg as they are the basis for reader isolation and time travel queries. | ||
| For controlling metadata size and storage costs, Iceberg provides snapshot lifecycle management procedures such as [`expire_snapshots`](../../spark/spark-procedures/#expire-snapshots) for removing unused snapshots and no longer neccessary data files based on table snapshot retention properties. | ||
|
|
||
| **For more sophisticated snapshot lifecycle management, Iceberg supports branches and tags which are named references to snapshots with their own independent lifecycles. This lifecycle is controlled by branch and tag level retention policies.** | ||
| Branches are independent lineages of snapshots and point to the head of the lineage. | ||
| Branches and tags have a maximum reference age property which control when the reference to the snapshot itself should be expired. | ||
| Branches have retention properties which define the minimum number of snapshots to retain on a branch as well as the maximum age of individual snapshots to retain on the branch. | ||
| These properties are used when the expireSnapshots procedure is run. | ||
| For details on the algorithm for expireSnapshots, refer to the [spec](../../../spec#snapshot-retention-policy). | ||
|
|
||
| ## Use Cases | ||
|
|
||
| Branching and tagging can be used for handling GDPR requirements and retaining important historical snapshots for auditing. | ||
| Branches can also be used as part of data engineering workflows, for enabling experimental branches for testing and validating new jobs. | ||
| See below for some examples of how branching and tagging can facilitate these use cases. | ||
|
|
||
| ### Historical Tags | ||
|
|
||
| Tags can be used for retaining important historical snapshots for auditing purposes. | ||
|
|
||
|  | ||
|
|
||
| The above diagram demonstrates retaininig important historical snapshot with the following retention policy, defined | ||
| via Spark SQL. | ||
|
|
||
| 1. Retain 1 snapshot per week for 1 month. This can be achieved by tagging the weekly snapshot and setting the tag retention to be a month. | ||
| snapshots will be kept, and the branch reference itself will be retained for 1 week. | ||
| ```sql | ||
| -- Create a tag for the first end of week snapshot. Retain the snapshot for a week | ||
| ALTER TABLE prod.db.table CREATE TAG 'EOW-01' AS OF VERSION 7 RETAIN 7 DAYS | ||
| ``` | ||
|
|
||
| 2. Retain 1 snapshot per month for 6 months. This can be achieved by tagging the monthly snapshot and setting the tag retention to be 6 months. | ||
| ```sql | ||
| -- Create a tag for the first end of month snapshot. Retain the snapshot for 6 months | ||
| ALTER TABLE prod.db.table CREATE TAG 'EOM-01' AS OF VERSION 30 RETAIN 180 DAYS | ||
| ``` | ||
|
|
||
| 3. Retain 1 snapshot per year forever. This can be achieved by tagging the annual snapshot. The default retention for branches and tags is forever. | ||
| ```sql | ||
| -- Create a tag for the end of the year and retain it forever. | ||
| ALTER TABLE prod.db.table CREATE TAG 'EOY-2023' AS OF VERSION 365 | ||
| ``` | ||
|
|
||
| 4. Create a temporary "test-branch" which is retained for 7 days and the latest 2 snapshots on the branch are retained. | ||
| ```sql | ||
| -- Create a branch "test-branch" which will be retained for 7 days along with the latest 2 snapshots | ||
| ALTER TABLE prod.db.table CREATE BRANCH test-branch RETAIN 7 DAYS WITH RETENTION 2 SNAPSHOTS | ||
| ``` | ||
|
|
||
| ### Audit Branch | ||
|
|
||
|  | ||
|
|
||
| The above diagram shows an example of using an audit branch for validating a write workflow. | ||
|
|
||
| 1. First ensure `write.wap.enabled` is set. | ||
| ```sql | ||
| ALTER TABLE db.table SET TBLPROPERTIES ( | ||
| 'write.wap.enabled''true' | ||
| ) | ||
| ``` | ||
| 2. Create `audit-branch` starting from snapshot 3, which will be written to and retained for 1 week. | ||
| ```sql | ||
| ALTER TABLE db.table CREATE BRANCH `audit-branch` AS OF VERSION 3 RETAIN 7 DAYS | ||
amogh-jahagirdar marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| ``` | ||
| 3. Writes are performed on a separate `audit-branch` independent from the main table history. | ||
| ```sql | ||
| -- WAP Branch write | ||
| SET spark.wap.branch = 'audit-branch' | ||
| INSERT INTO prod.db.table VALUES (3, 'c') | ||
| ``` | ||
| 4. A validation workflow can validate (e.g. data quality) the state of `audit-branch`. | ||
| 5. After validation, the main branch can be `fastForward` to the head of `audit-branch` to update the main table state. | ||
| ```java | ||
| table.manageSnapshots().fastForward("main", "audit-branch").commit() | ||
jackye1995 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| ``` | ||
| 6. The branch reference will be removed when `expireSnapshots` is run 1 week later. | ||
|
|
||
| ## Usage | ||
amogh-jahagirdar marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| Creating, querying and writing to branches and tags are supported in the Iceberg Java library, and in Spark and Flink engine integrations. | ||
|
|
||
| - [Iceberg Java Library](../../java-api-quickstart/#branching-and-tagging) | ||
| - [Spark DDLs](../spark-ddl/#branching-and-tagging-ddl) | ||
| - [Spark Reads](../spark-queries/#time-travel) | ||
| - [Spark Branch Writes](../spark-writes/#writing-to-branches) | ||
| - [Flink Reads](../flink-queries/#reading-branches-and-tags-with-SQL) | ||
| - [Flink Branch Writes](../flink-writes/#branch-writes) | ||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.