docs: iceberg integration - #2748
Open
sunng87 wants to merge 2 commits into
Open
Conversation
killme2008
reviewed
Aug 14, 2026
| The key idea is that GreptimeDB already stores its SST (sorted string table) data files as Parquet in object storage. | ||
| The Iceberg integration does **not** re-write, duplicate, or export the data. Instead it publishes Iceberg | ||
| **metadata** — manifests, manifest-lists, and table-metadata snapshots — that point at the existing Parquet files. | ||
| Any engine that speaks Iceberg can then read those files through the REST catalog. |
Member
There was a problem hiding this comment.
It would be better to include a diagram.
|
|
||
| ## Make a table readable | ||
|
|
||
| GreptimeDB publishes Iceberg metadata on flush, so the export of newly-written data appears after the next flush |
| GreptimeDB types map cleanly to Iceberg for the common cases (booleans, signed integers, floats, strings, binary, | ||
| date, timestamp). A few things to be aware of, especially in Spark: | ||
|
|
||
| - **Declare the time index as `TIMESTAMP(6)`.** GreptimeDB's default `TIMESTAMP` is millisecond precision, but the |
Member
There was a problem hiding this comment.
In that case, does it mean historical tables cannot use this feature, and only newly created tables with the correct TIME INDEX type configured can use it? I think this issue needs to be addressed.
Deploying greptime-docs with
|
| Latest commit: |
db985e1
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://9da177e6.greptime-docs.pages.dev |
| Branch Preview URL: | https://docs-iceberg.greptime-docs.pages.dev |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
What changed
Initial version of iceberg user guide in enterprise section.
Scope
TODO: backport to 1.2 if everything looks good.
Checklist