AI / Apache Paimon Interview questions
Describe what Paimon's system tables are for?
Paimon ships a rich set of system tables that expose metadata about a table's own history and status through ordinary SQL, so you don't need a separate tool to inspect internals. Flink, Spark, Trino, and StarRocks can all query them.
They come in two families: data system tables (queried per table, e.g. my_table$snapshots) covering things like snapshot history, schema history, file listings, tags, and branches; and global system tables under the reference sys database, covering catalog-wide information like every table's options at once.
SELECT * FROM my_table$snapshots;
More Related questions...