Skip to content
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

[Docs] Remove section about converting Delta back to parquet #4117

Merged
merged 1 commit into from
Feb 3, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions docs/source/delta-utility.md
Original file line number Diff line number Diff line change
Expand Up @@ -516,13 +516,6 @@ CONVERT TO DELTA iceberg.`<path-to-table>` NO STATISTICS

- Converting Iceberg merge-on-read tables that have experienced updates, deletions, or merges is not supported.

## Convert a Delta table to a Parquet table

You can easily convert a Delta table back to a Parquet table using the following steps:

1. If you have performed <Delta> operations that can change the data files (for example, `delete` or `merge`), run [vacuum](#delta-vacuum) with retention of 0 hours to delete all data files that do not belong to the latest version of the table.
#. Delete the `_delta_log` directory in the table directory.

<a id="restore-delta-table"></a>

## Restore a Delta table to an earlier state
Expand Down
Loading