
Ultimate access to all questions.
Which of the following describes the storage organization of a Delta table?
A
Delta tables are stored in a single file that contains data, history, metadata, and other attributes.
B
Delta tables store their data in a single file and all metadata in a collection of files in a separate location.
C
Delta tables are stored in a collection of files that contain data, history, metadata, and other attributes.
D
Delta tables are stored in a collection of files that contain only the data stored within the table.
E
Delta tables are stored in a single file that contains only the data stored within the table.
Explanation:
Delta tables use a collection of files (Parquet files) to store data, along with a transaction log (Delta Log) that contains metadata, history, and other attributes. This architecture enables ACID transactions, time travel, and schema evolution.
Key points about Delta table storage:
Why other options are incorrect: