Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Data Lake vs Delta Lake and ACID
00:00
5 left

Data Lake vs Delta Lake and ACID

HardSQL · PostgreSQL

Problem

Explain the difference between a data lake and Delta Lake, including Delta tables and ACID properties with examples.

Use the supplied PostgreSQL tables to produce a query-backed comparison. Include examples showing how committed Delta table operations differ from ordinary data lake assets, and explain the relevant ACID properties.

Output

  1. One row per lake asset, with asset_name, storage_model, acid_properties, committed_transactions, and committed_rows.
  2. Include assets without committed transactions, order by asset_name ascending, and exclude uncommitted operations.

Schema

lake_assets
ColumnTypeDescription
asset_idPKINTUnique lake asset identifier
asset_nameVARCHAR(100)Logical name of the lake asset
file_formatVARCHAR(20)Underlying storage format
is_delta_tableBOOLEANWhether the asset is managed as a Delta table
delta_transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
asset_idINTReferenced lake asset
operationVARCHAR(20)Operation recorded in the transaction log
is_committedBOOLEANWhether the operation was committed
rows_affectedINTNumber of rows affected by the operation
Tableslake_assetsdelta_transactions
Interviewer

Your question is Data Lake vs Delta Lake and ACID. Start with the requirements and the two tables in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.