AI / Apache Paimon Interview questions
What are Manifest files used for in Paimon?
Manifest files and manifest lists live in a table's manifest directory and record the changes to LSM data files and changelog files that belong to a given snapshot — specifically, which data files were created and which were deleted.
A manifest list is simply a list of manifest file names; a manifest file is the file that actually describes those file-level changes. Together with the snapshot file that references them, they let a reader recursively reconstruct exactly which data files make up the table at any given snapshot, without needing to list the whole filesystem.
More Related questions...