This is an automated email from the ASF dual-hosted git repository.
etudenhoefner pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg.git
The following commit(s) were added to refs/heads/main by this push:
new e5d9a1594b Docs: Clarify Partition Transform (#8337)
e5d9a1594b is described below
commit e5d9a1594b44491e1811876257a9a3473f8d8347
Author: Jason Fehr <[email protected]>
AuthorDate: Thu Sep 19 00:15:16 2024 -0700
Docs: Clarify Partition Transform (#8337)
---
docs/docs/partitioning.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/docs/partitioning.md b/docs/docs/partitioning.md
index 09c20439d1..aa573b33e9 100644
--- a/docs/docs/partitioning.md
+++ b/docs/docs/partitioning.md
@@ -84,7 +84,7 @@ This leads to several problems:
Iceberg produces partition values by taking a column value and optionally
transforming it. Iceberg is responsible for converting `event_time` into
`event_date`, and keeps track of the relationship.
-Table partitioning is configured using these relationships. The `logs` table
would be partitioned by `date(event_time)` and `level`.
+Table partitioning is configured using these relationships. The `logs` table
would be partitioned by `day(event_time)` and `level`.
Because Iceberg doesn't require user-maintained partition columns, it can hide
partitioning. Partition values are produced correctly every time and always
used to speed up queries, when possible. Producers and consumers wouldn't even
see `event_date`.