
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 storage organization where data is stored in Parquet files, and metadata is stored in JSON files in the _delta_log directory. This creates a collection of files that work together to provide ACID transactions, time travel, and other Delta Lake features.
Key points about Delta table storage:
_delta_log directory, containing:
Why other options are incorrect:
This distributed file organization enables Delta Lake's key features like ACID transactions, scalable metadata handling, and efficient time travel capabilities.