nfarah86 commented on code in PR #8093: URL: https://github.com/apache/hudi/pull/8093#discussion_r1147128617
########## website/docs/timeline.md: ########## @@ -3,40 +3,386 @@ title: Timeline toc: true --- -## Timeline -At its core, Hudi maintains a `timeline` of all actions performed on the table at different `instants` of time that helps provide instantaneous views of the table, -while also efficiently supporting retrieval of data in the order of arrival. A Hudi instant consists of the following components +A Hudi table maintains all operations happened to the table in a single timeline comprised of two parts, an active timeline and an archived timeline. The active timeline stores all the recent instants, while the archived timeline stores the older instants. An instant is a transaction where all respective partitions within a base path have been successfully updated by either a writer or a table service. Instants that get older in the active timeline are moved to archived timeline at various times. Review Comment: > Snuck in a few more comments. Happy to suggest edits to the top parts in the timeline doc Please suggest changes. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
