Einführung in das Databricks Lakehouse
Gang Wang
Senior Data Scientist
$$
$$

$$
$$
| All-Purpose | Jobs-Cluster | |
|---|---|---|
| Modus | Interaktiv | Automatisiert |
| Verwaltung | Manuell | Beendet automatisch |
| Kosten | Höher (Leerlauf) | Kostenoptimiert |
$$
SELECT COUNT(*) FROM bronze_sales;
-- 1,247,832 rows
SELECT COUNT(*) FROM silver_sales;
-- 1,189,456 rows (nulls removed)
SELECT COUNT(*) FROM gold_daily_revenue;
-- 365 rows (daily aggregates)
$$
$$
$$

$$
databricks.yml Asset Bundlebundle validate aus$$
targets:
production:
workspace:
root_path: /Shared/production
resources:
jobs:
nightly_sales_etl:
schedule:
quartz_cron: "0 0 3 * * ?"
$$
Einführung in das Databricks Lakehouse